| Index: icu52/source/common/stringpiece.cpp
|
| ===================================================================
|
| --- icu52/source/common/stringpiece.cpp (revision 259715)
|
| +++ icu52/source/common/stringpiece.cpp (working copy)
|
| @@ -68,6 +68,14 @@
|
| }
|
|
|
|
|
| +/* Microsoft Visual Studio (even 2013) complains about redefinition of this
|
| + * 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
|
|
|