Apply patch tested by SuperMat to fix clang compilation

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14649 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2013-12-07 16:23:40 +00:00
parent 627004a536
commit b8e42e3fe2
2 changed files with 3 additions and 1 deletions

View File

@ -11,3 +11,5 @@ OfflineKartSelectionScreen::~OfflineKartSelectionScreen()
{
//dtor
}
bool OfflineKartSelectionScreen::isRunning() { return singleton!=NULL; }

View File

@ -12,7 +12,7 @@ class OfflineKartSelectionScreen : public KartSelectionScreen, public GUIEngine:
virtual ~OfflineKartSelectionScreen();
public:
static bool isRunning() { return singleton!=NULL; }
static bool isRunning();
// we do not override anything, this class is just there to have a singleton
};