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:
parent
8c207dd3a9
commit
6d0c495fd0
49 changed files with 72 additions and 74 deletions
|
|
@ -153,7 +153,7 @@ template<class KeyType, class MappedType > class unordered_map {
|
|||
typedef const value_type& const_reference;
|
||||
|
||||
unordered_map();
|
||||
unordered_map(const unordered_map<KeyType, MappedType >&);
|
||||
unordered_map(const unordered_map<KeyType, MappedType >& other);
|
||||
|
||||
struct iterator {
|
||||
%typemap(javaclassmodifiers) iterator "protected class"
|
||||
|
|
@ -184,7 +184,7 @@ template<class KeyType, class MappedType > class unordered_map {
|
|||
%rename(isEmpty) empty;
|
||||
bool empty() const;
|
||||
void clear();
|
||||
iterator find(const KeyType&);
|
||||
iterator find(const KeyType& key);
|
||||
iterator begin();
|
||||
iterator end();
|
||||
%extend {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue