diff --git a/Lib/csharp/std_pair.i b/Lib/csharp/std_pair.i index 932849017..732347db5 100644 --- a/Lib/csharp/std_pair.i +++ b/Lib/csharp/std_pair.i @@ -22,10 +22,10 @@ namespace std { typedef U second_type; pair(); - pair(T t, U u); - pair(const pair& p); + pair(T first, U second); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; diff --git a/Lib/d/std_pair.i b/Lib/d/std_pair.i index 932849017..732347db5 100644 --- a/Lib/d/std_pair.i +++ b/Lib/d/std_pair.i @@ -22,10 +22,10 @@ namespace std { typedef U second_type; pair(); - pair(T t, U u); - pair(const pair& p); + pair(T first, U second); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; diff --git a/Lib/go/std_pair.i b/Lib/go/std_pair.i index 867bb2cd5..732347db5 100644 --- a/Lib/go/std_pair.i +++ b/Lib/go/std_pair.i @@ -23,9 +23,9 @@ namespace std { pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; diff --git a/Lib/guile/std_pair.i b/Lib/guile/std_pair.i index e738ecec9..050d4880a 100644 --- a/Lib/guile/std_pair.i +++ b/Lib/guile/std_pair.i @@ -119,9 +119,9 @@ namespace std { pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; @@ -221,9 +221,9 @@ namespace std { } pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; @@ -321,9 +321,9 @@ namespace std { } pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; @@ -412,9 +412,9 @@ namespace std { } pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; diff --git a/Lib/java/std_pair.i b/Lib/java/std_pair.i index 1454eaa9c..75ad30315 100644 --- a/Lib/java/std_pair.i +++ b/Lib/java/std_pair.i @@ -24,9 +24,9 @@ namespace std { pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; diff --git a/Lib/javascript/jsc/std_pair.i b/Lib/javascript/jsc/std_pair.i index 867bb2cd5..732347db5 100644 --- a/Lib/javascript/jsc/std_pair.i +++ b/Lib/javascript/jsc/std_pair.i @@ -23,9 +23,9 @@ namespace std { pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; diff --git a/Lib/javascript/v8/std_pair.i b/Lib/javascript/v8/std_pair.i index 7530e374e..b72c50b99 100644 --- a/Lib/javascript/v8/std_pair.i +++ b/Lib/javascript/v8/std_pair.i @@ -22,9 +22,9 @@ namespace std { pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; diff --git a/Lib/lua/std_pair.i b/Lib/lua/std_pair.i index 558887789..410da9223 100644 --- a/Lib/lua/std_pair.i +++ b/Lib/lua/std_pair.i @@ -15,12 +15,12 @@ namespace std { pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); T first; U second; }; template - pair make_pair(const T& t,const U& u); + pair make_pair(const T& first, const U& second); } diff --git a/Lib/mzscheme/std_pair.i b/Lib/mzscheme/std_pair.i index 52d2bdf87..75f6751cc 100644 --- a/Lib/mzscheme/std_pair.i +++ b/Lib/mzscheme/std_pair.i @@ -121,9 +121,9 @@ namespace std { pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; @@ -223,9 +223,9 @@ namespace std { } pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; @@ -324,9 +324,9 @@ namespace std { } pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; @@ -419,9 +419,9 @@ namespace std { } pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; diff --git a/Lib/ocaml/std_pair.i b/Lib/ocaml/std_pair.i index 867bb2cd5..732347db5 100644 --- a/Lib/ocaml/std_pair.i +++ b/Lib/ocaml/std_pair.i @@ -23,9 +23,9 @@ namespace std { pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; diff --git a/Lib/perl5/std_pair.i b/Lib/perl5/std_pair.i index 932849017..732347db5 100644 --- a/Lib/perl5/std_pair.i +++ b/Lib/perl5/std_pair.i @@ -22,10 +22,10 @@ namespace std { typedef U second_type; pair(); - pair(T t, U u); - pair(const pair& p); + pair(T first, U second); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; diff --git a/Lib/php/std_pair.i b/Lib/php/std_pair.i index 867bb2cd5..732347db5 100644 --- a/Lib/php/std_pair.i +++ b/Lib/php/std_pair.i @@ -23,9 +23,9 @@ namespace std { pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; diff --git a/Lib/scilab/std_pair.i b/Lib/scilab/std_pair.i index bd0eb53fe..39ef008d3 100644 --- a/Lib/scilab/std_pair.i +++ b/Lib/scilab/std_pair.i @@ -23,9 +23,9 @@ namespace std { pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second; diff --git a/Lib/std/std_pair.i b/Lib/std/std_pair.i index 001cd6738..800155f21 100644 --- a/Lib/std/std_pair.i +++ b/Lib/std/std_pair.i @@ -35,9 +35,9 @@ namespace std { pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair< U1, U2 > &p); + template 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; diff --git a/Lib/tcl/std_pair.i b/Lib/tcl/std_pair.i index bd0eb53fe..39ef008d3 100644 --- a/Lib/tcl/std_pair.i +++ b/Lib/tcl/std_pair.i @@ -23,9 +23,9 @@ namespace std { pair(); pair(T first, U second); - pair(const pair& p); + pair(const pair& other); - template pair(const pair &p); + template pair(const pair &other); T first; U second;