Medial Code Documentation
Loading...
Searching...
No Matches
ReenableStupidWarnings.h
1#ifdef EIGEN_WARNINGS_DISABLED
2#undef EIGEN_WARNINGS_DISABLED
3
4#ifndef EIGEN_PERMANENTLY_DISABLE_STUPID_WARNINGS
5 #ifdef _MSC_VER
6 #pragma warning( pop )
7 #elif defined __INTEL_COMPILER
8 #pragma warning pop
9 #elif defined __clang__
10 #pragma clang diagnostic pop
11 #elif defined __GNUC__ && __GNUC__>=6
12 #pragma GCC diagnostic pop
13 #endif
14#endif
15
16#endif // EIGEN_WARNINGS_DISABLED