[libcxx] r210380 - Since we now have a value for __cplusplus for c++14, teach libc++ about it
Marshall Clow
mclow.lists at gmail.com
Fri Jun 6 15:31:10 PDT 2014
Author: marshall
Date: Fri Jun 6 17:31:09 2014
New Revision: 210380
URL: http://llvm.org/viewvc/llvm-project?rev=210380&view=rev
Log:
Since we now have a value for __cplusplus for c++14, teach libc++ about it
Modified:
libcxx/trunk/include/__config
Modified: libcxx/trunk/include/__config
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/__config?rev=210380&r1=210379&r2=210380&view=diff
==============================================================================
--- libcxx/trunk/include/__config (original)
+++ libcxx/trunk/include/__config Fri Jun 6 17:31:09 2014
@@ -623,8 +623,10 @@ template <unsigned> struct __static_asse
#ifndef _LIBCPP_STD_VER
# if __cplusplus <= 201103L
# define _LIBCPP_STD_VER 11
+# elif __cplusplus <= 201402L
+# define _LIBCPP_STD_VER 14
# else
-# define _LIBCPP_STD_VER 13 // current year, or date of c++14 ratification
+# define _LIBCPP_STD_VER 15 // current year, or date of c++17 ratification
# endif
#endif // _LIBCPP_STD_VER
More information about the cfe-commits
mailing list