Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ReenableStupidWarnings.h « util « Core « src « Eigen « Eigen3 « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ddfbd4aa684688068d65ece6490793b05f9f726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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