Consistent parameter names for std::pair
This commit is contained in:
parent
a6a50d60e1
commit
52063a732b
15 changed files with 51 additions and 51 deletions
|
|
@ -24,9 +24,9 @@ namespace std {
|
|||
|
||||
pair();
|
||||
pair(T first, U second);
|
||||
pair(const pair& p);
|
||||
pair(const pair& other);
|
||||
|
||||
template <class U1, class U2> pair(const pair<U1, U2> &p);
|
||||
template <class U1, class U2> pair(const pair<U1, U2> &other);
|
||||
|
||||
T first;
|
||||
U second;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue