Fix wrapping of C++ enum boolean values when using %javaconst(1)
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12029 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
8a169eb0cb
commit
76bbd7373d
2 changed files with 13 additions and 0 deletions
|
|
@ -58,3 +58,9 @@ static const int FOUR = 4;
|
|||
%inline %{
|
||||
enum Numero { Quattro = FOUR };
|
||||
%}
|
||||
|
||||
// Test boolean enums
|
||||
%inline %{
|
||||
typedef enum { PLAY = true, STOP = false } play_state;
|
||||
%}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue