Fix a few minor inconsistencies in the STL wrappers

Mainly to use a more normal constructor declaration and to enable
classes with more than one template parameter to be used as container types.
This commit is contained in:
William S Fulton 2016-11-29 19:35:09 +00:00
commit 3b03e6addd
5 changed files with 8 additions and 8 deletions

View file

@ -6,7 +6,7 @@
// List
%define %std_list_methods(list)
%define %std_list_methods(list...)
%std_sequence_methods(list)
void pop_front();
@ -17,7 +17,7 @@
%enddef
%define %std_list_methods_val(list)
%define %std_list_methods_val(list...)
%std_sequence_methods_val(list)
void pop_front();