disable warning 279: controlling expression is constant for ICC

This commit is contained in:
Gael Guennebaud 2009-09-15 13:03:24 +02:00
parent 9e9abab2b9
commit 4a6e5694d6

View File

@ -40,6 +40,11 @@
#define DEFAULT_REPEAT 10 #define DEFAULT_REPEAT 10
#ifdef __ICC
// disable warning #279: controlling expression is constant
#pragma warning disable 279
#endif
namespace Eigen namespace Eigen
{ {
static std::vector<std::string> g_test_stack; static std::vector<std::string> g_test_stack;