diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-19 18:06:14 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-19 18:06:14 +0000 |
commit | 44134f448d7d96f21751c55defab6ef8a32afab8 (patch) | |
tree | 99af7559e7332a50b18c66febe6882f7408da835 /src/pugixpath.cpp | |
parent | 7b419ad9ecc9ff3056102a265a141863e168cd14 (diff) |
Fixed SNC warnings
git-svn-id: http://pugixml.googlecode.com/svn/trunk@525 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src/pugixpath.cpp')
-rw-r--r-- | src/pugixpath.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pugixpath.cpp b/src/pugixpath.cpp index dfc5637..17674fb 100644 --- a/src/pugixpath.cpp +++ b/src/pugixpath.cpp @@ -44,6 +44,10 @@ typedef __int32 int32_t; # pragma warning(disable: 4127) // conditional expression is constant
#endif
+#ifdef __SNC__
+# pragma diag_suppress=237 // controlling expression is constant
+#endif
+
#include <algorithm>
#include <string>
|