diff options
author | Filippos Karapetis | 2009-11-03 20:13:14 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-11-03 20:13:14 +0000 |
commit | 55ebcf69e527baec00b4970f6693c89a7a28e2bc (patch) | |
tree | 3d937b2885c6e1786128cba637a0b98c02955c04 /tools/create_msvc | |
parent | 7bed008f8eeb6b47282ee7eeb43c89aa4fb4f9fe (diff) | |
download | scummvm-rg350-55ebcf69e527baec00b4970f6693c89a7a28e2bc.tar.gz scummvm-rg350-55ebcf69e527baec00b4970f6693c89a7a28e2bc.tar.bz2 scummvm-rg350-55ebcf69e527baec00b4970f6693c89a7a28e2bc.zip |
Turn off warning 4267 ("conversion from 'size_t' to xxx, possible loss of data"), thrown in 64bit builds
svn-id: r45636
Diffstat (limited to 'tools/create_msvc')
-rw-r--r-- | tools/create_msvc/create_msvc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/create_msvc/create_msvc.cpp b/tools/create_msvc/create_msvc.cpp index 863a202657..3cf09f709f 100644 --- a/tools/create_msvc/create_msvc.cpp +++ b/tools/create_msvc/create_msvc.cpp @@ -935,7 +935,7 @@ void outputGlobalPropFile(std::ofstream &properties, int bits, const std::string "\t>\n" "\t<Tool\n" "\t\tName=\"VCCLCompilerTool\"\n" - "\t\tDisableSpecificWarnings=\"4068;4100;4103;4121;4127;4189;4201;4221;4244;4250;4310;4351;4355;4510;4511;4512;4610;4701;4702;4706;4800;4996\"\n" + "\t\tDisableSpecificWarnings=\"4068;4100;4103;4121;4127;4189;4201;4221;4244;4250;4267;4310;4351;4355;4510;4511;4512;4610;4701;4702;4706;4800;4996\"\n" "\t\tAdditionalIncludeDirectories=\"" << prefix << ";" << prefix << "\\engines\"\n" "\t\tPreprocessorDefinitions=\"" << defines << "\"\n" "\t\tExceptionHandling=\"0\"\n" |