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.
This commit is contained in:
William S Fulton 2019-02-12 22:04:58 +00:00
commit 6d0c495fd0
49 changed files with 72 additions and 74 deletions

View file

@ -154,7 +154,7 @@ template<class KeyType, class MappedType, class Comparator = std::less<KeyType>
typedef const value_type& const_reference;
map();
map(const map<KeyType, MappedType, Comparator >&);
map(const map<KeyType, MappedType, Comparator >& other);
struct iterator {
%typemap(javaclassmodifiers) iterator "protected class"
@ -185,7 +185,7 @@ template<class KeyType, class MappedType, class Comparator = std::less<KeyType>
%rename(isEmpty) empty;
bool empty() const;
void clear();
iterator find(const KeyType&);
iterator find(const KeyType& key);
iterator begin();
iterator end();
%extend {