From 44f5d18587ebeb5c5a27c34ddd53c2cda25d4c9e Mon Sep 17 00:00:00 2001 From: Douglas Katzman Date: Wed, 5 Aug 2015 21:31:54 +0000 Subject: [PATCH] Reword a comment about IncludeDirGroup. NFC Referring to the groups by mixing the enumerated name with the command-line flag was not as clear as could be. llvm-svn: 244150 --- clang/include/clang/Lex/HeaderSearchOptions.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/clang/include/clang/Lex/HeaderSearchOptions.h b/clang/include/clang/Lex/HeaderSearchOptions.h index 12f0447..94d0d25 100644 --- a/clang/include/clang/Lex/HeaderSearchOptions.h +++ b/clang/include/clang/Lex/HeaderSearchOptions.h @@ -20,10 +20,11 @@ namespace clang { namespace frontend { - /// IncludeDirGroup - Identifiers the group a include entry belongs to, which - /// represents its relative positive in the search list. A \#include of a "" - /// path starts at the -iquote group, then searches the Angled group, then - /// searches the system group, etc. + /// IncludeDirGroup - Identifies the group an include Entry belongs to, + /// representing its relative positive in the search list. + /// \#include directives whose paths are enclosed by string quotes ("") + /// start searching at the Quoted group (specified by '-iquote'), + /// then search the Angled group, then the System group, etc. enum IncludeDirGroup { Quoted = 0, ///< '\#include ""' paths, added by 'gcc -iquote'. Angled, ///< Paths for '\#include <>' added by '-I'. -- 2.7.4