From f11952052c9665fe57eeb4f1654f8be71585794e Mon Sep 17 00:00:00 2001 From: Argyrios Kyrtzidis Date: Wed, 29 Jul 2009 23:39:25 +0000 Subject: [PATCH] Fix some comments. llvm-svn: 77531 --- clang/include/clang/Index/DeclReferenceMap.h | 3 +-- clang/include/clang/Index/Entity.h | 2 +- clang/include/clang/Index/Program.h | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/clang/include/clang/Index/DeclReferenceMap.h b/clang/include/clang/Index/DeclReferenceMap.h index 130ca38..d1e2c09 100644 --- a/clang/include/clang/Index/DeclReferenceMap.h +++ b/clang/include/clang/Index/DeclReferenceMap.h @@ -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); diff --git a/clang/include/clang/Index/Entity.h b/clang/include/clang/Index/Entity.h index 2b5adc6..283f552 100644 --- a/clang/include/clang/Index/Entity.h +++ b/clang/include/clang/Index/Entity.h @@ -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. diff --git a/clang/include/clang/Index/Program.h b/clang/include/clang/Index/Program.h index 2605bb6..b2bdaa6 100644 --- a/clang/include/clang/Index/Program.h +++ b/clang/include/clang/Index/Program.h @@ -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; -- 2.7.4