diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2011-10-08 03:19:12 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2011-10-08 03:19:12 +0000 |
commit | cf85e59f12c68bca3ca1c20eb6a8d91d8ad0bd4e (patch) | |
tree | 888393d2df4feb1f186279feaaafbf219dcc0685 /src/pugixml.cpp | |
parent | fb8eb3ae3f63c3cd4f85e657bef1ee3b785ed52c (diff) |
Fixed 'controlling expression is constant' warning for new versions of Intel C++ compiler
git-svn-id: http://pugixml.googlecode.com/svn/trunk@821 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src/pugixml.cpp')
-rw-r--r-- | src/pugixml.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp index 3653e95..69e1b55 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -45,6 +45,7 @@ #ifdef __INTEL_COMPILER # pragma warning(disable: 177) // function was declared but never referenced +# pragma warning(disable: 279) // controlling expression is constant # pragma warning(disable: 1478 1786) // function was declared "deprecated" #endif |