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

WRG: disable some warnings on apple and with specific clang version

parent 20ebbafa
No related branches found
No related tags found
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.
Finish editing this message first!
Please register or to comment