Chromium Code Reviews| Index: source/common/stringpiece.cpp |
| =================================================================== |
| --- source/common/stringpiece.cpp (revision 53046) |
| +++ source/common/stringpiece.cpp (working copy) |
| @@ -47,7 +47,7 @@ |
| * Visual Studios 9.0. |
| * Cygwin with MSVC 9.0 also complains here about redefinition. |
|
M-A Ruel
2010/08/04 22:35:26
I wonder what's "cygwin with msvc9"
|
| */ |
| -#if (!defined(_MSC_VER) || (_MSC_VER >= 1500)) && !defined(CYGWINMSVC) |
| +#if (!defined(_MSC_VER) || (_MSC_VER > 1500)) && !defined(CYGWINMSVC) |
| const int32_t StringPiece::npos; |
| #endif |