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
When following merge header placements (like qtbase), where B-p.h is a private header (-p) and B.cpp is its source file, than in B.cpp
B-p.h
-p
B.cpp
#include "A.h" #include "B-p.h" # is main include...
B-p.h cannot be detected to be the main include with the current settings.
Also we would like to have #53013 such that the include syntax does not matter above.
Not sure if the current logic could be made to include more possible file stems?
file = "B.bla.cpp" --> stem = "B.bla" , additionaStem = "B-p.bla"
file = "B.bla.cpp"
stem = "B.bla"
additionaStem = "B-p.bla"
where the additionalStem ist determined by a some regex/repl?
additionalStem
The text was updated successfully, but these errors were encountered:
@llvm/issue-subscribers-clang-format
Sorry, something went wrong.
No branches or pull requests
When following merge header placements (like qtbase), where
B-p.h
is a private header (-p
) andB.cpp
is its source file, than inB.cpp
B-p.h
cannot be detected to be the main include with the current settings.Also we would like to have #53013
such that the include syntax does not matter above.
Not sure if the current logic could be made to include more possible file stems?
file = "B.bla.cpp"
-->stem = "B.bla"
,additionaStem = "B-p.bla"
where the
additionalStem
ist determined by a some regex/repl?The text was updated successfully, but these errors were encountered: