diff options
author | cor3ntin <corentinjabot@gmail.com> | 2024-08-23 17:24:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-23 17:24:08 +0200 |
commit | 6e78aef646c22b7087cbf7939c8016f4f59614a1 (patch) | |
tree | 827a81fd9ec7bb9612fadb77c7419b5cc8d5f259 /clang/test/Lexer/cxx-features.cpp | |
parent | 7c9008115a2a24788f07bb476fb28dcf5e661ae4 (diff) | |
download | llvm-6e78aef646c22b7087cbf7939c8016f4f59614a1.zip llvm-6e78aef646c22b7087cbf7939c8016f4f59614a1.tar.gz llvm-6e78aef646c22b7087cbf7939c8016f4f59614a1.tar.bz2 |
[Clang] Implement P2747 constexpr placement new (#104586)
The implementation follows the resolution of CWG2922
Diffstat (limited to 'clang/test/Lexer/cxx-features.cpp')
-rw-r--r-- | clang/test/Lexer/cxx-features.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Lexer/cxx-features.cpp b/clang/test/Lexer/cxx-features.cpp index 1c51013..4a06d29 100644 --- a/clang/test/Lexer/cxx-features.cpp +++ b/clang/test/Lexer/cxx-features.cpp @@ -317,7 +317,7 @@ #error "wrong value for __cpp_lambdas" #endif -#if check(constexpr, 0, 200704, 201304, 201603, 201907, 202211, 202306) +#if check(constexpr, 0, 200704, 201304, 201603, 201907, 202211, 202406L) #error "wrong value for __cpp_constexpr" #endif |