diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-05 17:10:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-05 17:27:52 +0300 |
commit | 3ac81fa84a3d1866c74ccb051c0661329bff774e (patch) | |
tree | 4226baddf64a667a2f2d77d445b894fe7bb29578 /src/gui/sdlinput.cpp | |
parent | 011d05e7ff9abfc6052951fee954b1c193ea4fff (diff) | |
download | mv-3ac81fa84a3d1866c74ccb051c0661329bff774e.tar.gz mv-3ac81fa84a3d1866c74ccb051c0661329bff774e.tar.bz2 mv-3ac81fa84a3d1866c74ccb051c0661329bff774e.tar.xz mv-3ac81fa84a3d1866c74ccb051c0661329bff774e.zip |
Remove quotes from pragmas.
Diffstat (limited to 'src/gui/sdlinput.cpp')
-rw-r--r-- | src/gui/sdlinput.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/sdlinput.cpp b/src/gui/sdlinput.cpp index 7b0d7dca9..3dfa5d6d6 100644 --- a/src/gui/sdlinput.cpp +++ b/src/gui/sdlinput.cpp @@ -333,8 +333,8 @@ int SDLInput::convertKeyCharacter(const SDL_Event &event) int value = keysym.unicode; #endif - PRAGMA45("GCC diagnostic push") - PRAGMA45("GCC diagnostic ignored \"-Wswitch-enum\"") + PRAGMA45(GCC diagnostic push) + PRAGMA45(GCC diagnostic ignored "-Wswitch-enum") switch (keysym.sym) { case SDLK_TAB: @@ -496,12 +496,12 @@ int SDLInput::convertKeyCharacter(const SDL_Event &event) default: break; } - PRAGMA45("GCC diagnostic pop") + PRAGMA45(GCC diagnostic pop) if (!(CAST_U32(keysym.mod) & KMOD_NUM)) { - PRAGMA45("GCC diagnostic push") - PRAGMA45("GCC diagnostic ignored \"-Wswitch-enum\"") + PRAGMA45(GCC diagnostic push) + PRAGMA45(GCC diagnostic ignored "-Wswitch-enum") switch (keysym.sym) { case SDLK_KP0: @@ -537,7 +537,7 @@ int SDLInput::convertKeyCharacter(const SDL_Event &event) default: break; } - PRAGMA45("GCC diagnostic pop") + PRAGMA45(GCC diagnostic pop) } return value; } |