Update of /cvsroot/pygccxml/source/pygccxml/unittests/data
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15004/pygccxml/unittests/data
Modified Files:
declarations_enums.hpp
Log Message:
adding new unit test that should reproduce Matthias problem with different order of enums
does not reproduce :-(
Index: declarations_enums.hpp
===================================================================
RCS file: /cvsroot/pygccxml/source/pygccxml/unittests/data/declarations_enums.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** declarations_enums.hpp 9 Oct 2005 05:27:05 -0000 1.3
--- declarations_enums.hpp 5 Mar 2006 05:44:14 -0000 1.4
***************
*** 11,14 ****
--- 11,19 ----
enum ENumbers{ e0, e1, e2, e3, e4, e5, e6, e7, e8, e9 };
+ class data{
+ public:
+ enum EColor{ red, green, blue, black, white };
+ };
+
} }
|