From 813df568708b4127dd57ef8c3a8c82e70d7b5232 Mon Sep 17 00:00:00 2001 From: Tom Spilman Date: Fri, 28 Jun 2013 02:13:04 -0500 Subject: [PATCH] Fixed stray class keyword in enum causing a C++ syntax error. --- tests/Hello/Hello.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Hello/Hello.h b/tests/Hello/Hello.h index ab26316e..b13f7ce5 100644 --- a/tests/Hello/Hello.h +++ b/tests/Hello/Hello.h @@ -34,7 +34,7 @@ struct CppSharp_API Bar2 : public Bar int C; }; -enum class Enum +enum Enum { A = 0, B = 2, C = 5 };