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:
JF Bastien 2019-08-14 17:48:36 +00:00
parent 40f88d5f62
commit f6db75c39b
1 changed files with 0 additions and 6 deletions

View File

@ -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.