Skip to content
Snippets Groups Projects
Commit cf53c213 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[disable_warnings] restrict -Wmisleading-indentation to gcc5

parent 14e45583
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,9 @@
#elif defined(BOOST_GCC) && BOOST_GCC
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wall"
#if (__GNUC__ > 4)
#pragma GCC diagnostic ignored "-Wmisleading-indentation"
#endif
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#pragma GCC diagnostic ignored "-Wextra"
#pragma GCC diagnostic ignored "-Wfloat-equal"
......
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