File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,9 @@ struct Config {
6767 Edits;
6868 // / Where to search for compilation databases for this file's flags.
6969 CDBSearchSpec CDBSearch = {CDBSearchSpec::Ancestors, std::nullopt };
70+
71+ // / Whether to use clangd's own builtin headers, or ones from the system
72+ // / include extractor, if available.
7073 BuiltinHeaderPolicy BuiltinHeaders = BuiltinHeaderPolicy::Clangd;
7174 } CompileFlags;
7275
Original file line number Diff line number Diff line change @@ -424,7 +424,7 @@ extractSystemIncludesAndTarget(const DriverArgs &InputArgs,
424424 break ;
425425 }
426426 case Config::BuiltinHeaderPolicy::QueryDriver:
427- vlog (" System includes extractor: builtin headers from query driver" );
427+ vlog (" System includes extractor: Using builtin headers from query driver. " );
428428 break ;
429429 }
430430
Original file line number Diff line number Diff line change @@ -58,8 +58,8 @@ Semantic Highlighting
5858Compile flags
5959^^^^^^^^^^^^^
6060
61- - Added `BuiltinHeaders ` which controls if system includes are extracted from
62- Clangd or solely from the QueryDriver .
61+ - Added `BuiltinHeaders ` config key which controls if system includes are
62+ extracted from clangd or solely from the query driver .
6363
6464Hover
6565^^^^^
You can’t perform that action at this time.
0 commit comments