mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-10-23 05:21:07 +08:00
15 lines
325 B
C
15 lines
325 B
C
#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
|
|
#elif defined __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#endif
|
|
|
|
#endif // EIGEN_WARNINGS_DISABLED
|