|
clang-tools 24.0.0git
|
#include <ConfigFragment.h>
Public Attributes | |
| std::vector< Located< std::string > > | FullyQualifiedNamespaces |
| std::vector< Located< std::string > > | QuotedHeaders |
| List of regexes for headers that should always be included with a ""-style include. | |
| std::vector< Located< std::string > > | AngledHeaders |
| List of regexes for headers that should always be included with a <>-style include. | |
Definition at line 310 of file ConfigFragment.h.
| std::vector<Located<std::string> > clang::clangd::config::Fragment::StyleBlock::AngledHeaders |
List of regexes for headers that should always be included with a <>-style include.
By default, and in case of a conflict with AngledHeaders (i.e. a header matches a regex in both QuotedHeaders and AngledHeaders), system headers use <> and non-system headers use "". These can match any suffix of the header file in question. Matching is performed against the absolute path of the header within the project.
Definition at line 332 of file ConfigFragment.h.
| std::vector<Located<std::string> > clang::clangd::config::Fragment::StyleBlock::FullyQualifiedNamespaces |
Definition at line 315 of file ConfigFragment.h.
| std::vector<Located<std::string> > clang::clangd::config::Fragment::StyleBlock::QuotedHeaders |
List of regexes for headers that should always be included with a ""-style include.
By default, and in case of a conflict with AngledHeaders (i.e. a header matches a regex in both QuotedHeaders and AngledHeaders), system headers use <> and non-system headers use "". These can match any suffix of the header file in question. Matching is performed against the absolute path of the header within the project.
Definition at line 324 of file ConfigFragment.h.