fix a ton of build server warnings (they were all the same)

This commit is contained in:
jacob1 2016-04-26 23:28:52 -04:00
parent 7a18f6ec09
commit 6624550dc1
2 changed files with 2 additions and 2 deletions

View File

@ -388,7 +388,7 @@ if not msvc:
env.Append(CXXFLAGS=['-std=gnu++98']) env.Append(CXXFLAGS=['-std=gnu++98'])
else: else:
env.Append(CXXFLAGS=['-std=c++98']) env.Append(CXXFLAGS=['-std=c++98'])
env.Append(CXXFLAGS=['-Wno-invalid-offsetof']) env.Append(CXXFLAGS=['-Wno-invalid-offsetof', '-Wno-unused-result'])
#Add platform specific flags and defines #Add platform specific flags and defines

View File

@ -6,4 +6,4 @@ void ClipboardPush(std::string text);
std::string ClipboardPull(); std::string ClipboardPull();
int GetModifiers(); int GetModifiers();
bool LoadWindowPosition(int scale); bool LoadWindowPosition(int scale);
void SetCursorEnabled(int enabled); void SetCursorEnabled(int enabled);