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
|
|
@ -13,14 +13,14 @@
|
|||
|
||||
%define %std_queue_methods(queue...)
|
||||
queue();
|
||||
queue( const _Sequence& );
|
||||
queue(const _Sequence& other);
|
||||
|
||||
bool empty() const;
|
||||
size_type size() const;
|
||||
const value_type& front() const;
|
||||
const value_type& back() const;
|
||||
void pop();
|
||||
void push( const value_type& );
|
||||
void push(const value_type& value);
|
||||
%enddef
|
||||
|
||||
%define %std_queue_methods_val(queue...)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue