Reword a comment about IncludeDirGroup. NFC
authorDouglas Katzman <dougk@google.com>
Wed, 5 Aug 2015 21:31:54 +0000 (21:31 +0000)
committerDouglas Katzman <dougk@google.com>
Wed, 5 Aug 2015 21:31:54 +0000 (21:31 +0000)
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

index 12f0447..94d0d25 100644 (file)
 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'.