diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2014-05-03 19:25:36 +0200 |
---|---|---|
committer | Aokromes <Aokromes@users.noreply.github.com> | 2014-05-03 19:25:36 +0200 |
commit | d7b1405725d2f247776f3586df8c3512416f60cd (patch) | |
tree | 3aced294b76f2e78b2d71b2d920297337b1249da /src/server/shared/CompilerDefs.h | |
parent | b7a105bcc86b4791e0deeaff7d8ba697821172ae (diff) | |
parent | cbd36d5a4e97d41e56b7339a619ee1072fc9cc17 (diff) |
Merge pull request #11968 from Dehravor/cpp11
Core/Misc: Remove remaining COMPILER_HAS_CPP11_SUPPORT related macros
Diffstat (limited to 'src/server/shared/CompilerDefs.h')
-rw-r--r-- | src/server/shared/CompilerDefs.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/server/shared/CompilerDefs.h b/src/server/shared/CompilerDefs.h index 8a557328af4..2c2d7ea861d 100644 --- a/src/server/shared/CompilerDefs.h +++ b/src/server/shared/CompilerDefs.h @@ -55,12 +55,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 |