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
Having the following includes in a File "BTest.h" :
#include "StdAfx.h" #include <BTest.h> /// MAIN INCLUDE #include <ATest.h>
and the attached clang-format rules: excerpt here:
IncludeCategories: - Regex: '^[<"]StdAfx' Priority: -1 - Regex: '^<.*>' Priority: 2 - Regex: '.*' Priority: 3 IncludeIsMainRegex: '$'
The output sorts like:
#include "StdAfx.h" #include <ATest.h> #include <BTest.h> /// MAIN INCLUDE
which is kind of wrong (even though normally we would use quotes "" instead of angles <> for the main include).
This only happens with "<BTest.h>" not with with the quotes: '"BTest.h"'.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Extended Description
Having the following includes in a File "BTest.h" :
and the attached clang-format rules: excerpt here:
The output sorts like:
which is kind of wrong (even though normally we would use quotes "" instead of angles <> for the main include).
This only happens with "<BTest.h>" not with with the quotes: '"BTest.h"'.
The text was updated successfully, but these errors were encountered: