forked from OSchip/llvm-project
Don't explicitly check for C++14
MSVC is weird about __cplusplus. The check I added in D66195 confuses it. llvm-svn: 368889
This commit is contained in:
parent
40f88d5f62
commit
f6db75c39b
|
@ -43,12 +43,6 @@
|
||||||
# define __has_builtin(x) 0
|
# define __has_builtin(x) 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
# if __cplusplus < 201402L
|
|
||||||
# error Expected C++14 or later.
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/// \macro LLVM_GNUC_PREREQ
|
/// \macro LLVM_GNUC_PREREQ
|
||||||
/// Extend the default __GNUC_PREREQ even if glibc's features.h isn't
|
/// Extend the default __GNUC_PREREQ even if glibc's features.h isn't
|
||||||
/// available.
|
/// available.
|
||||||
|
|
Loading…
Reference in New Issue