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

9 lines
329 B
C
Raw Normal View History

#ifdef _MSC_VER
2009-12-12 14:49:43 +01:00
// 4273 - QtAlignedMalloc, inconsistent DLL linkage
// 4100 - unreferenced formal parameter (occurred e.g. in aligned_allocator::destroy(pointer p))
// 4101 - we need this one for the inlining fix
#pragma warning( push )
2009-12-12 14:49:43 +01:00
#pragma warning( disable : 4100 4101 4181 4244 4127 4211 4273 4522 4717 )
#endif