This should be Microsoft Visual C++ only

svn-id: r9355
This commit is contained in:
Travis Howell 2003-08-01 05:41:07 +00:00
parent 053d12ef29
commit a15dab5fb8
2 changed files with 2 additions and 5 deletions

View File

@ -35,10 +35,12 @@
#elif defined(WIN32)
#if _MSC_VER
#pragma once
#pragma warning( disable : 4068 ) // turn off "unknown pragma" warning
#pragma warning( disable : 4244 ) // turn off "conversion type" warning
#pragma warning( disable : 4390 ) // turn oof "empty statement" warning for BS2 code
#endif
#if !defined(_WIN32_WCE)

View File

@ -23,11 +23,6 @@
#include <ctype.h>
#ifdef _MSC_VER
// Disable "unknown pragma" warning in MSVC 6
#pragma warning(disable : 4068)
#endif
namespace ScummVM {
String::String(const char *str, int len) {