aboutsummaryrefslogtreecommitdiff
path: root/Lib/std/std_pair.i
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/std/std_pair.i')
-rw-r--r--Lib/std/std_pair.i16
1 files changed, 8 insertions, 8 deletions
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 <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;