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

@ -13,13 +13,13 @@
%define %std_stack_methods(stack...)
stack();
stack( const _Sequence& );
stack(const _Sequence& other);
bool empty() const;
size_type size() const;
const value_type& top() const;
void pop();
void push( const value_type& );
void push(const value_type& value);
%enddef
%define %std_stack_methods_val(stack...)