aboutsummaryrefslogtreecommitdiff
path: root/Lib/tcl
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2019-02-14 21:57:26 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2019-02-14 22:44:27 +0000
commit52063a732b0133a18819d866d8ecd5facdff1ede (patch)
treed675c9df60a99912bc720bb0563c1ad486fe9fae /Lib/tcl
parenta6a50d60e170aeb7e1310c1ddf119fdff53560a6 (diff)
downloadswig-52063a732b0133a18819d866d8ecd5facdff1ede.tar.gz
Consistent parameter names for std::pair
Diffstat (limited to 'Lib/tcl')
-rw-r--r--Lib/tcl/std_pair.i4
1 files changed, 2 insertions, 2 deletions
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 <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;