diff options
author | Johannes Schickel | 2014-06-21 20:50:22 +0200 |
---|---|---|
committer | Johannes Schickel | 2014-06-21 20:50:22 +0200 |
commit | d3ed1229ce937516f13d28610fc5d05178f88d07 (patch) | |
tree | b83d98bb99df8ba672c1b4d15aa2f2f2fd73b1bc /common/endian.h | |
parent | 8d020ba086f99d8150dc451e3fed36d24af6b4e0 (diff) | |
parent | c43ce9ecf3ed2542173b8c438a9e9e1c44bf1f21 (diff) | |
download | scummvm-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/endian.h')
-rw-r--r-- | common/endian.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/endian.h b/common/endian.h index 529e7f5ac0..6d6563f802 100644 --- a/common/endian.h +++ b/common/endian.h @@ -92,8 +92,7 @@ return __builtin_bswap32(a); } -// test for MSVC 7 or newer -#elif defined(_MSC_VER) && _MSC_VER >= 1300 +#elif defined(_MSC_VER) FORCEINLINE uint32 SWAP_BYTES_32(uint32 a) { return _byteswap_ulong(a); |