Files
eigen/Eigen/src/Core/util/ReenableStupidWarnings.h

12 lines
265 B
C
Raw Normal View History

#ifdef EIGEN_WARNINGS_DISABLED
#undef EIGEN_WARNINGS_DISABLED
#ifndef EIGEN_PERMANENTLY_DISABLE_STUPID_WARNINGS
#ifdef _MSC_VER
#pragma warning( pop )
#elif defined __INTEL_COMPILER
#pragma warning pop
#endif
#endif
#endif // EIGEN_WARNINGS_DISABLED