diff options
author | Jamieson Christian | 2003-07-31 06:47:05 +0000 |
---|---|---|
committer | Jamieson Christian | 2003-07-31 06:47:05 +0000 |
commit | c5de74558008f1b33c6f3a73f306d5d0950aa10d (patch) | |
tree | a381a1f0c03d6f7a919b7e29aa8796b686d5c975 /common | |
parent | e52e1fbfd0727aa0fb942c4df07428d70044579f (diff) | |
download | scummvm-rg350-c5de74558008f1b33c6f3a73f306d5d0950aa10d.tar.gz scummvm-rg350-c5de74558008f1b33c6f3a73f306d5d0950aa10d.tar.bz2 scummvm-rg350-c5de74558008f1b33c6f3a73f306d5d0950aa10d.zip |
Disabled unknown pragma warning in MSVC-6.
svn-id: r9320
Diffstat (limited to 'common')
-rw-r--r-- | common/str.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/str.cpp b/common/str.cpp index 2c0de82f7d..97bb7fb17e 100644 --- a/common/str.cpp +++ b/common/str.cpp @@ -23,6 +23,10 @@ #include <ctype.h> +#ifdef _MSC_VER +// Disable "unknown pragma" warning in MSVC 6 +#pragma warning(disable : 4068) +#endif namespace ScummVM { |