fix erroring out on win x64 due to bad compiler version check
Compiler version of x64 compiler did not change at update 1. 'Helpfully', #error on the x64 compiler emits "unexpected end-of-file found" rather than something useful. :/ R=ukai@chromium.org TBR=cpu@chromium.org BUG=196438 Review URL: https://codereview.chromium.org/12465017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188241 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
@ -332,8 +332,8 @@ bool DismissVirtualKeyboard() {
|
||||
|
||||
#ifdef _MSC_VER
|
||||
|
||||
// There are optimizer bugs in VS2012 pre-Update 1.
|
||||
#if _MSC_VER == 1700 && _MSC_FULL_VER < 170051106
|
||||
// There are optimizer bugs in x86 VS2012 pre-Update 1.
|
||||
#if _MSC_VER == 1700 && defined _M_IX86 && _MSC_FULL_VER < 170051106
|
||||
#error Must install Update 1 to Visual Studio 2012.
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user