diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2011-07-14 16:08:00 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2011-07-14 16:08:00 +0000 |
| commit | 6d900dff2d0f48fcaca3343909d8ace29498310b (patch) | |
| tree | 63555753f3141e673c62caa993004c33c32375fb /clang | |
| parent | 65c9c9bd6923450ed30e1b06e2fb668f913d0727 (diff) | |
| download | bcm5719-llvm-6d900dff2d0f48fcaca3343909d8ace29498310b.tar.gz bcm5719-llvm-6d900dff2d0f48fcaca3343909d8ace29498310b.zip | |
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.
llvm-svn: 135149
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/include/clang-c/Index.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index b9197b86e78..4852ded7f88 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/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. |

