Add STL container copy constructors where missing

Also provide consistent copy constructor declarations.
This commit is contained in:
William S Fulton 2019-02-14 18:53:05 +00:00
commit 6d27ead9c0
36 changed files with 72 additions and 43 deletions

View file

@ -199,7 +199,8 @@ namespace std {
vector(unsigned int size = 0);
vector(unsigned int size, const T& value);
vector(const vector<T>& other);
vector(const vector& other);
%rename(length) size;
unsigned int size() const;
%rename("empty?") empty;
@ -383,7 +384,8 @@ namespace std {
vector(unsigned int size = 0);
vector(unsigned int size, const T& value);
vector(const vector<T>& other);
vector(const vector& other);
%rename(length) size;
unsigned int size() const;
%rename("empty?") empty;