From ea15e5dfb687cc61aaccd989e7ac4662a45749fb Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 30 Sep 2003 11:32:06 +0000 Subject: [PATCH] enums cannot be static. If it needs to be limited to this object file, wrap it in an anonymous namespace. I'm not sure if that is even needed for enums. --- stepmania/src/ScreenProfileOptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenProfileOptions.cpp b/stepmania/src/ScreenProfileOptions.cpp index d4b9d3f895..ab454f36eb 100644 --- a/stepmania/src/ScreenProfileOptions.cpp +++ b/stepmania/src/ScreenProfileOptions.cpp @@ -20,7 +20,7 @@ #include "ScreenManager.h" -static enum { +enum { PO_PLAYER1, PO_PLAYER2, PO_CREATE_NEW,