File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Extension/src/LanguageServer Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -444,9 +444,9 @@ export class CppSettings extends Settings {
444444 public get defaultBrowsePath ( ) : string [ ] | undefined { return this . getArrayOfStringsWithUndefinedDefault ( "default.browse.path" ) ; }
445445 public get defaultDatabaseFilename ( ) : string | undefined { return changeBlankStringToUndefined ( this . getAsStringOrUndefined ( "default.browse.databaseFilename" ) ) ; }
446446 public get defaultLimitSymbolsToIncludedHeaders ( ) : boolean { return this . getAsBoolean ( "default.browse.limitSymbolsToIncludedHeaders" ) ; }
447- public get defaultRecursiveIncludesReduce ( ) : string { return this . getAsString ( "default.recursiveIncludes.reduce" ) ; }
448- public get defaultRecursiveIncludesPriority ( ) : string { return this . getAsString ( "default.recursiveIncludes.priority" ) ; }
449- public get defaultRecursiveIncludesOrder ( ) : string { return this . getAsString ( "default.recursiveIncludes.order" ) ; }
447+ public get defaultRecursiveIncludesReduce ( ) : string | undefined { return this . getAsStringOrUndefined ( "default.recursiveIncludes.reduce" ) ; }
448+ public get defaultRecursiveIncludesPriority ( ) : string | undefined { return this . getAsStringOrUndefined ( "default.recursiveIncludes.priority" ) ; }
449+ public get defaultRecursiveIncludesOrder ( ) : string | undefined { return this . getAsStringOrUndefined ( "default.recursiveIncludes.order" ) ; }
450450 public get defaultSystemIncludePath ( ) : string [ ] | undefined { return this . getArrayOfStringsWithUndefinedDefault ( "default.systemIncludePath" ) ; }
451451 public get defaultEnableConfigurationSquiggles ( ) : boolean { return this . getAsBoolean ( "default.enableConfigurationSquiggles" ) ; }
452452 public get defaultCustomConfigurationVariables ( ) : Associations | undefined { return this . getAsAssociations ( "default.customConfigurationVariables" , true ) ?? undefined ; }
You can’t perform that action at this time.
0 commit comments