From 86288afd6a9e8bcc15b9dcfcf69043fa384e0441 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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@244150 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Lex/HeaderSearchOptions.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/clang/Lex/HeaderSearchOptions.h b/include/clang/Lex/HeaderSearchOptions.h index 12f0447a11..94d0d258de 100644 --- a/include/clang/Lex/HeaderSearchOptions.h +++ b/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.40.0