Skip to content

Commit

Permalink
Fix swig/std_unique_ptr.i
Browse files Browse the repository at this point in the history
Fixes some `used without template arguments` errors when running swig with `-builtin` or `-keyword`.
  • Loading branch information
dweindl committed Mar 4, 2024
1 parent 3a6b0df commit bf62c12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swig/std_unique_ptr.i
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace std {

pointer operator-> () const;
pointer release ();
void reset (pointer __p=pointer());
void reset (pointer __p=std::unique_ptr<Type>::pointer());
void swap (unique_ptr &__u);
pointer get () const;
operator bool () const;
Expand Down

0 comments on commit bf62c12

Please sign in to comment.