Index: icu52/source/common/stringpiece.cpp |
=================================================================== |
--- icu52/source/common/stringpiece.cpp (revision 259715) |
+++ icu52/source/common/stringpiece.cpp (working copy) |
@@ -68,6 +68,14 @@ |
} |
+/* Microsft Visual Studios (even 2013) complains about redefinition of this |
jsbell
2014/04/04 18:16:20
Typos: "Microsoft Visual Studio" (+o -s)
(Or just
jungshik at Google
2014/04/04 22:20:27
Done.
|
+ * static const class variable. However, the C++ standard states that this |
+ * definition is correct. Perhaps there is a bug in the Microsoft compiler. |
+ * This is not an issue on any other compilers (that we know of). |
+ * Cygwin with MSVC 9.0 also complains here about redefinition. |
+ */ |
+#if (!defined(_MSC_VER) || (_MSC_VER > 1800)) && !defined(CYGWINMSVC) |
const int32_t StringPiece::npos = 0x7fffffff; |
+#endif |
U_NAMESPACE_END |