Skip to content
Snippets Groups Projects
Commit 20ebbafa authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

WRG: correct logic in macro - disable clang warning related to override only on Apple platform

parent 15fba6ef
Branches
Tags
No related merge requests found
......@@ -26,7 +26,7 @@
#pragma clang diagnostic ignored "-Wc++11-extensions"
/* Apple's 3.6.0 based clang doesn't support -Winconsistent-missing-override */
#if !defined(__apple_build_version__) || __apple_build_version__ >= 7000053
#if defined(__apple_build_version__) || __apple_build_version__ >= 7000053
#pragma clang diagnostic ignored "-Winconsistent-missing-override"
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment