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
|
|
@ -27,7 +27,7 @@ namespace std {
|
|||
public:
|
||||
vector();
|
||||
vector(unsigned int);
|
||||
vector(const vector&);
|
||||
vector(const vector& other);
|
||||
vector(unsigned int,T);
|
||||
unsigned int size() const;
|
||||
unsigned int max_size() const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue