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:
William S Fulton 2010-05-14 19:03:01 +00:00
commit 76bbd7373d
2 changed files with 13 additions and 0 deletions

View file

@ -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;
%}