summaryrefslogtreecommitdiff
path: root/src/common/CompilerDefs.h
diff options
context:
space:
mode:
authorKargatum <dowlandtop@yandex.com>2019-03-26 00:01:56 +0700
committerGitHub <noreply@github.com>2019-03-26 00:01:56 +0700
commit824a80005c872dbd266ed69bb321525d1e2f3479 (patch)
tree7577023ce99a811c7e4f3490cc345a0b7902c9bd /src/common/CompilerDefs.h
parentd1abe39414849d82334910eabb78dad531ffbcf6 (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.h8
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