Disable enum_forward test for Octave as this is a C only code test which does not compile as C++

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13058 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2012-05-10 05:43:23 +00:00
commit af079aa439

View file

@ -1,5 +1,7 @@
%module enum_forward
/* This contains C code that is not valid C++03 and Octave wrappers are always compiled as C++ */
#if !defined(SWIGOCTAVE)
%{
enum ForwardEnum1 { AAA, BBB };
enum ForwardEnum2 { CCC, DDD };
@ -32,4 +34,4 @@ enum ForwardEnum3 test_function3(enum ForwardEnum3 e) {
}
enum ForwardEnum3;
%}
#endif