aboutsummaryrefslogtreecommitdiff
path: root/common/util.h
diff options
context:
space:
mode:
authorJohannes Schickel2014-06-21 20:50:22 +0200
committerJohannes Schickel2014-06-21 20:50:22 +0200
commitd3ed1229ce937516f13d28610fc5d05178f88d07 (patch)
treeb83d98bb99df8ba672c1b4d15aa2f2f2fd73b1bc /common/util.h
parent8d020ba086f99d8150dc451e3fed36d24af6b4e0 (diff)
parentc43ce9ecf3ed2542173b8c438a9e9e1c44bf1f21 (diff)
downloadscummvm-rg350-d3ed1229ce937516f13d28610fc5d05178f88d07.tar.gz
scummvm-rg350-d3ed1229ce937516f13d28610fc5d05178f88d07.tar.bz2
scummvm-rg350-d3ed1229ce937516f13d28610fc5d05178f88d07.zip
Merge pull request #469 from klusark/msvc8
ALL: Remove support for MSVC8 and older
Diffstat (limited to 'common/util.h')
-rw-r--r--common/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/util.h b/common/util.h
index 1c0e45662e..f51aa00925 100644
--- a/common/util.h
+++ b/common/util.h
@@ -72,7 +72,7 @@ template<typename T> inline void SWAP(T &a, T &b) { T tmp = a; a = b; b = tmp; }
# define SCUMMVM_CURRENT_FUNCTION __PRETTY_FUNCTION__
#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901)
# define SCUMMVM_CURRENT_FUNCTION __func__
-#elif defined(_MSC_VER) && _MSC_VER >= 1300
+#elif defined(_MSC_VER)
# define SCUMMVM_CURRENT_FUNCTION __FUNCTION__
#else
# define SCUMMVM_CURRENT_FUNCTION "<unknown>"