]> granicus.if.org Git - clang/commitdiff
Fix some comments.
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Wed, 29 Jul 2009 23:39:25 +0000 (23:39 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Wed, 29 Jul 2009 23:39:25 +0000 (23:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77531 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Index/DeclReferenceMap.h
include/clang/Index/Entity.h
include/clang/Index/Program.h

index 130ca387d5f42dc2f42550f83b1f88f4c144de6c..d1e2c09e98d4ef2b256fce3d4ff4d28ec4582707 100644 (file)
@@ -26,8 +26,7 @@ namespace idx {
   
 /// \brief Maps NamedDecls with the ASTLocations that reference them.
 ///
-/// References are mapped and retrieved using the primary decls
-/// (see Decl::getPrimaryDecl()).
+/// References are mapped and retrieved using the canonical decls.
 class DeclReferenceMap {
 public:
   explicit DeclReferenceMap(ASTContext &Ctx);
index 2b5adc6882d01dcd46a54a8c744bcc16112ce216..283f55276e956e72a32d7936e6353347e9a7e4b9 100644 (file)
@@ -61,7 +61,7 @@ public:
   std::string getPrintableName() const;
 
   /// \brief Get an Entity associated with the given Decl.
-  /// \returns Null if an Entity cannot refer to this Decl.
+  /// \returns invalid Entity if an Entity cannot refer to this Decl.
   static Entity get(Decl *D, Program &Prog);
 
   /// \brief true if the Entity is not visible outside the trasnlation unit.
index 2605bb685a7592b2c461c8eeb209609d8112c3d7..b2bdaa6c2e24e9583bcab0a3efe1bb2df984bbf9 100644 (file)
@@ -20,7 +20,7 @@ namespace clang {
 namespace idx {
   class EntityHandler;
 
-/// idx::Program is the top level object that owns and maintains information
+/// \brief Top level object that owns and maintains information
 /// that is common across translation units.
 class Program {
   void *Impl;