Consistent parameter names for std::pair

This commit is contained in:
William S Fulton 2019-02-14 21:57:26 +00:00
commit 52063a732b
15 changed files with 51 additions and 51 deletions

View file

@ -35,9 +35,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;
@ -76,8 +76,8 @@ namespace std {
%typemap_traits_ptr(SWIG_TYPECHECK_PAIR, std::pair< T, U* >);
pair();
pair(T __a, U* __b);
pair(const pair& __p);
pair(T first, U* second);
pair(const pair& other);
T first;
U* second;
@ -112,8 +112,8 @@ namespace std {
%typemap_traits_ptr(SWIG_TYPECHECK_PAIR, std::pair< T*, U >);
pair();
pair(T* __a, U __b);
pair(const pair& __p);
pair(T* first, U second);
pair(const pair& other);
T* first;
U second;
@ -148,8 +148,8 @@ namespace std {
%typemap_traits(SWIG_TYPECHECK_PAIR, std::pair< T*, U* >);
pair();
pair(T* __a, U* __b);
pair(const pair& __p);
pair(T* first, U* second);
pair(const pair& other);
T* first;
U* second;