diff options
author | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-06 19:47:18 +0000 |
---|---|---|
committer | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-06 19:47:18 +0000 |
commit | 1616a28e25886027d4988f543690830439cc0111 (patch) | |
tree | cd4020ee496b7e4d3fea643e48f6e79d66a21b9f /base/third_party | |
parent | d09072e7610b3dc4cb0180d57e4bbb8bae843ad5 (diff) | |
download | chromium_src-1616a28e25886027d4988f543690830439cc0111.zip chromium_src-1616a28e25886027d4988f543690830439cc0111.tar.gz chromium_src-1616a28e25886027d4988f543690830439cc0111.tar.bz2 |
I verified that the Visual C++ 2005 bug has been fixed in
Visual C++ 2008, so limit our workaround to Visual C++ 2005.
R=eroman
BUG=4387
Review URL: http://codereview.chromium.org/39225
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11139 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/third_party')
-rw-r--r-- | base/third_party/nspr/prtime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/third_party/nspr/prtime.cc b/base/third_party/nspr/prtime.cc index 733db58..d9392a8 100644 --- a/base/third_party/nspr/prtime.cc +++ b/base/third_party/nspr/prtime.cc @@ -1149,7 +1149,7 @@ PR_ParseTimeString( and if you're wrong, it will "fix" it for you. */ localTime.tm_isdst = -1; -#if _MSC_VER >= 1400 /* 1400 = Visual C++ 2005 (8.0) */ +#if _MSC_VER == 1400 /* 1400 = Visual C++ 2005 (8.0) */ /* * mktime will return (time_t) -1 if the input is a date * after 23:59:59, December 31, 3000, US Pacific Time (not |