Browse Source

Fixed stray class keyword in enum causing a C++ syntax error.

pull/4/head
Tom Spilman 13 years ago
parent
commit
813df56870
  1. 2
      tests/Hello/Hello.h

2
tests/Hello/Hello.h

@ -34,7 +34,7 @@ struct CppSharp_API Bar2 : public Bar @@ -34,7 +34,7 @@ struct CppSharp_API Bar2 : public Bar
int C;
};
enum class Enum
enum Enum
{
A = 0, B = 2, C = 5
};

Loading…
Cancel
Save