diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-04-27 02:41:58 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-04-27 02:41:58 +0300 |
commit | 981b9521eadc49bf30b8f06a47335df3bea1d4f5 (patch) | |
tree | f3a7926b05666ac86e41e692aa2f1b56680bd735 | |
parent | c014aedd155d366ecbfa507317647675181a813d (diff) | |
download | libADLMIDI-981b9521eadc49bf30b8f06a47335df3bea1d4f5.tar.gz libADLMIDI-981b9521eadc49bf30b8f06a47335df3bea1d4f5.tar.bz2 libADLMIDI-981b9521eadc49bf30b8f06a47335df3bea1d4f5.zip |
Fixed MSVC build
-rw-r--r-- | src/chips/opl_chip_base.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/chips/opl_chip_base.h b/src/chips/opl_chip_base.h index 75dd903..fb9b9e9 100644 --- a/src/chips/opl_chip_base.h +++ b/src/chips/opl_chip_base.h @@ -4,8 +4,7 @@ #include <stdint.h> #include <stddef.h> -/* TODO: MSVC: Use MSVC versioing instead of this to detect does it supports those C++11 keywords or not */ -#if __cplusplus <= 199711L +#if !defined(_MSC_VER) && (__cplusplus <= 199711L) #define final #define override #endif |