diff options
author | Kargatum <dowlandtop@yandex.com> | 2019-03-26 00:01:56 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-26 00:01:56 +0700 |
commit | 824a80005c872dbd266ed69bb321525d1e2f3479 (patch) | |
tree | 7577023ce99a811c7e4f3490cc345a0b7902c9bd /src/common/CompilerDefs.h | |
parent | d1abe39414849d82334910eabb78dad531ffbcf6 (diff) |
Refactor(Core/Misc): Remove remaining COMPILER_HAS_CPP11_SUPPORT related macros (#1627)
* Delete macros UNORDERED_MAP
* Delete macros UNORDERED_SET
Diffstat (limited to 'src/common/CompilerDefs.h')
-rw-r--r-- | src/common/CompilerDefs.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/common/CompilerDefs.h b/src/common/CompilerDefs.h index 36cf2bae44..e79f65dde9 100644 --- a/src/common/CompilerDefs.h +++ b/src/common/CompilerDefs.h @@ -43,12 +43,4 @@ # error "FATAL ERROR: Unknown compiler." #endif -#if defined(__cplusplus) && __cplusplus == 201103L -# define COMPILER_HAS_CPP11_SUPPORT 1 -#elif _MSC_VER >= 1700 -# define COMPILER_HAS_CPP11_SUPPORT 1 -#else -# define COMPILER_HAS_CPP11_SUPPORT 0 -#endif - #endif |