diff options
author | JosiahWI <josiah_vanderzee@mediacombb.net> | 2021-11-11 15:53:46 -0600 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2021-11-24 22:07:26 +0100 |
commit | 6d133e1bcc82c8646e0f94132a7e2cf09c840745 (patch) | |
tree | 723a2c681b134a9e1fc5067f3e7abff7d086e0c6 /source/Irrlicht/CIrrDeviceLinux.cpp | |
parent | d4119ba6640fa96eb0587b46c4a64c2e818818a8 (diff) | |
download | irrlicht-6d133e1bcc82c8646e0f94132a7e2cf09c840745.tar.xz |
Fix various GCC warnings
- fix overload hiding
- handle missing enumeration values in switch
- remove extraenous semicolons
- always have defaults in color converter switch
- fix root cause of stringop warning
Diffstat (limited to 'source/Irrlicht/CIrrDeviceLinux.cpp')
-rw-r--r-- | source/Irrlicht/CIrrDeviceLinux.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Irrlicht/CIrrDeviceLinux.cpp b/source/Irrlicht/CIrrDeviceLinux.cpp index c23a02b..c4f8d4e 100644 --- a/source/Irrlicht/CIrrDeviceLinux.cpp +++ b/source/Irrlicht/CIrrDeviceLinux.cpp @@ -102,7 +102,7 @@ namespace #if defined(_IRR_LINUX_X11_XINPUT2_)
int XI_EXTENSIONS_OPCODE;
#endif
-};
+}
namespace irr
{
|