[cfe-commits] r135149 - /cfe/trunk/include/clang-c/Index.h

Chandler Carruth chandlerc at gmail.com
Thu Jul 14 09:08:00 PDT 2011


Author: chandlerc
Date: Thu Jul 14 11:08:00 2011
New Revision: 135149

URL: http://llvm.org/viewvc/llvm-project?rev=135149&view=rev
Log:
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.

Modified:
    cfe/trunk/include/clang-c/Index.h

Modified: cfe/trunk/include/clang-c/Index.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang-c/Index.h?rev=135149&r1=135148&r2=135149&view=diff
==============================================================================
--- cfe/trunk/include/clang-c/Index.h (original)
+++ cfe/trunk/include/clang-c/Index.h Thu Jul 14 11:08:00 2011
@@ -833,10 +833,10 @@
   
   /**
    * \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 @@
 
   /**
    * \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.





More information about the cfe-commits mailing list