-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Needs to add -Wno-missing-template-arg-list-after-template-kw to compile with clang19 #221
Comments
Ok, thanks for flagging this. |
Fixed in CTRE: hanickadot/compile-time-regular-expressions#307 |
Urfoex
added a commit
that referenced
this issue
Oct 28, 2024
…me-regular-expressions/blob/main/single-header/ctre.hpp which should fix clang 19 usage #221
Urfoex
added a commit
that referenced
this issue
Oct 28, 2024
…me-regular-expressions/blob/main/single-header/ctre.hpp which should fix clang 19 usage #221
liuzicheng1987
pushed a commit
that referenced
this issue
Oct 29, 2024
…me-regular-expressions/blob/main/single-header/ctre.hpp which should fix clang 19 usage #221 (#233)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When compiling with clangd 19, this error happens:
In file included from /home/ivansbs/ivan/test_reflect/src/main.cpp:5: In file included from /home/ivansbs/ivan/test_reflect/reflect-cpp/include/rfl.hpp:32: In file included from /home/ivansbs/ivan/test_reflect/reflect-cpp/include/rfl/Pattern.hpp:4: In file included from /home/ivansbs/ivan/test_reflect/reflect-cpp/include/rfl/PatternValidator.hpp:9: /home/ivansbs/ivan/test_reflect/reflect-cpp/include/rfl/thirdparty/ctre.hpp:5439:27: error: a template argument list is expected after a name prefixed by the template keyword [-Wmissing-template-arg-list-after-template-kw] 5439 | return Method::template exec();
and i need to add -Wno-missing-template-arg-list-after-template-kw to be able to compile with it. This issue does not happen when compiling with gcc.
Using CMake and Ninja Build as well.
The text was updated successfully, but these errors were encountered: