[cfe-commits] r158774 - /cfe/trunk/include/clang/AST/Type.h

James Dennett jdennett at google.com
Tue Jun 19 17:50:53 PDT 2012


Author: jdennett
Date: Tue Jun 19 19:50:53 2012
New Revision: 158774

URL: http://llvm.org/viewvc/llvm-project?rev=158774&view=rev
Log:
Documentation cleanup:
* Escape < characters in Doxygen comments as needed;
* Demote one Doxygen comment to a regular comment to fix a Doxygen warning.

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

Modified: cfe/trunk/include/clang/AST/Type.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Type.h?rev=158774&r1=158773&r2=158774&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Type.h (original)
+++ cfe/trunk/include/clang/AST/Type.h Tue Jun 19 19:50:53 2012
@@ -1647,7 +1647,7 @@
   AutoType *getContainedAutoType() const;
 
   /// Member-template getAs<specific type>'.  Look through sugar for
-  /// an instance of <specific type>.   This scheme will eventually
+  /// an instance of \<specific type>.   This scheme will eventually
   /// replace the specific getAsXXXX methods above.
   ///
   /// There are some specializations of this member template listed
@@ -5034,7 +5034,7 @@
 template<typename T>
 struct ArrayType_cannot_be_used_with_getAs<T, true>;
 
-/// Member-template getAs<specific type>'.
+// Member-template getAs<specific type>'.
 template <typename T> const T *Type::getAs() const {
   ArrayType_cannot_be_used_with_getAs<T> at;
   (void)at;





More information about the cfe-commits mailing list