diff options
author | Roy Jacobson <roi.jacobson1@gmail.com> | 2022-09-29 18:45:03 +0300 |
---|---|---|
committer | Roy Jacobson <roi.jacobson1@gmail.com> | 2022-09-29 23:03:26 +0300 |
commit | 6523814c4e38ad70f8fd3fc3c39d089195e099a1 (patch) | |
tree | f07c51018e02c7a079fd8695565c5e52fa8481a0 /clang/test/Lexer/cxx-features.cpp | |
parent | 9933a2e9fd0c37dcdce5952fab7e486d3cf2d336 (diff) | |
download | llvm-6523814c4e38ad70f8fd3fc3c39d089195e099a1.zip llvm-6523814c4e38ad70f8fd3fc3c39d089195e099a1.tar.gz llvm-6523814c4e38ad70f8fd3fc3c39d089195e099a1.tar.bz2 |
[Clang] P1169R4: static operator()
Implements 'P1169R4: static operator()' from C++2b.
Reviewed By: #clang-language-wg, aaron.ballman
Differential Revision: https://reviews.llvm.org/D133659
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 1963b1d..d1c9f0d 100644 --- a/clang/test/Lexer/cxx-features.cpp +++ b/clang/test/Lexer/cxx-features.cpp @@ -47,7 +47,7 @@ #error "wrong value for __cpp_multidimensional_subscript" #endif -#if check(static_call_operator, 0, 0, 0, 0, 0, 0) +#if check(static_call_operator, 0, 202207, 202207, 202207, 202207, 202207) #error "wrong value for __cpp_static_call_operator" #endif |