aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2011-07-14 16:08:00 +0000
committerChandler Carruth <chandlerc@gmail.com>2011-07-14 16:08:00 +0000
commitfd14e91dc0ac5db175c4b30af98e7f8adabcb508 (patch)
treeb39e177baf843d6b643db210d3b7cd16c40c60ae
parentcea731a9cb7de3f473d60e5ea544e25621cebd76 (diff)
Clean up some comments I missed when switching from
NestedMacroInstantiations -> NestedMacroExpansions. With this change, libclang should be completely converted except for uses of SourceManger and SourceLocation APIs, and the C bindings for those APIs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@135149 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang-c/Index.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index b9197b86e7..4852ded7f8 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -833,10 +833,10 @@ enum CXTranslationUnit_Flags {
/**
* \brief Used to indicate that the "detailed" preprocessing record,
- * if requested, should also contain nested macro instantiations.
+ * if requested, should also contain nested macro expansions.
*
- * Nested macro instantiations (i.e., macro instantiations that occur
- * inside another macro instantiation) can, in some code bases, require
+ * Nested macro expansions (i.e., macro expansions that occur
+ * inside another macro expansion) can, in some code bases, require
* a large amount of storage to due preprocessor metaprogramming. Moreover,
* its fairly rare that this information is useful for libclang clients.
*/
@@ -844,7 +844,7 @@ enum CXTranslationUnit_Flags {
/**
* \brief Legacy name to indicate that the "detailed" preprocessing record,
- * if requested, should contain nested macro instantiations.
+ * if requested, should contain nested macro expansions.
*
* \see CXTranslationUnit_NestedMacroExpansions for the current name for this
* value, and its semantics. This is just an alias.