We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/biojppm/c4core/blob/master/src/c4/compiler.hpp#L27 It breaks compilation using clang-cl.exe because it defines both _MSC_VER and __clang__ and cannot find alloca.h in rapidyaml. Also it breaks clangd when using msvc toolchain, eg. in qt creator.
_MSC_VER
__clang__
alloca.h
The text was updated successfully, but these errors were encountered:
Thanks for reporting. I'll need to add a repro to the CI before fixing it. Fixing is easy, the CI less so.
Sorry, something went wrong.
No branches or pull requests
https://github.com/biojppm/c4core/blob/master/src/c4/compiler.hpp#L27
It breaks compilation using clang-cl.exe because it defines both
_MSC_VER
and__clang__
and cannot findalloca.h
in rapidyaml. Also it breaks clangd when using msvc toolchain, eg. in qt creator.The text was updated successfully, but these errors were encountered: