summaryrefslogtreecommitdiff
path: root/Lib/mzscheme/std_map.i
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2019-02-12 22:04:58 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2019-02-13 22:45:47 +0000
commit6d0c495fd042a313e0a8d6a9d36209b92b9bf42b (patch)
tree6863db5822ec6940c0dfc3064c6b2a3aa54185da /Lib/mzscheme/std_map.i
parent8c207dd3a9eae0435f219b4e70f02a503cd66b49 (diff)
downloadswig-6d0c495fd042a313e0a8d6a9d36209b92b9bf42b.tar.gz
Add missing parameter names in STL container wrappers
Mostly in STL copy constructors. Best to have parameter names as they make their way into the wrappers in some target languages.
Diffstat (limited to 'Lib/mzscheme/std_map.i')
-rw-r--r--Lib/mzscheme/std_map.i8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/mzscheme/std_map.i b/Lib/mzscheme/std_map.i
index 6a0cb2d36..68c7f7fb1 100644
--- a/Lib/mzscheme/std_map.i
+++ b/Lib/mzscheme/std_map.i
@@ -222,7 +222,7 @@ namespace std {
typedef K key_type;
typedef T mapped_type;
map();
- map(const map< K, T, C > &);
+ map(const map< K, T, C >& other);
unsigned int size() const;
bool empty() const;
@@ -442,7 +442,7 @@ namespace std {
%rename("has-key?") has_key;
public:
map();
- map(const map< K, T, C > &);
+ map(const map< K, T, C >& other);
unsigned int size() const;
bool empty() const;
@@ -654,7 +654,7 @@ namespace std {
%rename("has-key?") has_key;
public:
map();
- map(const map< K, T, C > &);
+ map(const map< K, T, C >& other);
unsigned int size() const;
bool empty() const;
@@ -866,7 +866,7 @@ namespace std {
%rename("has-key?") has_key;
public:
map();
- map(const map< K, T, C > &);
+ map(const map< K, T, C >& other);
unsigned int size() const;
bool empty() const;