disable/enable msvc headers are allowed to be included multiple times

This commit is contained in:
Gael Guennebaud 2009-01-12 14:46:11 +00:00
parent 294f5f16dd
commit 6efaece8ce
2 changed files with 0 additions and 9 deletions

View File

@ -1,9 +1,5 @@
#ifndef EIGEN_DISABLEMSVCWARNINGS_H
#define EIGEN_DISABLEMSVCWARNINGS_H
#ifdef _MSC_VER
#pragma warning( push )
#pragma warning( disable : 4181 4244 4127 4211 )
#endif
#endif // EIGEN_DISABLEMSVCWARNINGS_H

View File

@ -1,9 +1,4 @@
#ifndef EIGEN_ENABLEMSVCWARNINGS_H
#define EIGEN_ENABLEMSVCWARNINGS_H
#ifdef _MSC_VER
#pragma warning( pop )
#endif
#endif // EIGEN_ENABLEMSVCWARNINGS_H