[cfe-commits] r159214 - /cfe/trunk/include/clang/AST/ASTContext.h

Dmitri Gribenko gribozavr at gmail.com
Tue Jun 26 10:54:58 PDT 2012


Author: gribozavr
Date: Tue Jun 26 12:54:58 2012
New Revision: 159214

URL: http://llvm.org/viewvc/llvm-project?rev=159214&view=rev
Log:
Fix comment: refer to documentation comments in general, not just Doxygen comments.

Modified:
    cfe/trunk/include/clang/AST/ASTContext.h

Modified: cfe/trunk/include/clang/AST/ASTContext.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTContext.h?rev=159214&r1=159213&r2=159214&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ASTContext.h (original)
+++ cfe/trunk/include/clang/AST/ASTContext.h Tue Jun 26 12:54:58 2012
@@ -429,7 +429,7 @@
   /// with a given declaration.
   mutable llvm::DenseMap<const Decl *, const RawComment *> DeclComments;
 
-  /// \brief Return the Doxygen-style comment attached to a given declaration,
+  /// \brief Return the documentation comment attached to a given declaration,
   /// without looking into cache.
   const RawComment *getRawCommentForDeclNoCache(const Decl *D) const;
 
@@ -438,7 +438,7 @@
     Comments.addComment(RC);
   }
 
-  /// \brief Return the Doxygen-style comment attached to a given declaration.
+  /// \brief Return the documentation comment attached to a given declaration.
   /// Returns NULL if no comment is attached.
   const RawComment *getRawCommentForDecl(const Decl *D) const;
 





More information about the cfe-commits mailing list