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

Ted Kremenek kremenek at apple.com
Fri Oct 14 21:06:56 PDT 2011


Author: kremenek
Date: Fri Oct 14 23:06:55 2011
New Revision: 142052

URL: http://llvm.org/viewvc/llvm-project?rev=142052&view=rev
Log:
Convert stray doxygen comments to regular comments.  They logically represent the fields in FunctionProtoType.

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=142052&r1=142051&r2=142052&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Type.h (original)
+++ cfe/trunk/include/clang/AST/Type.h Fri Oct 14 23:06:55 2011
@@ -2737,18 +2737,18 @@
   /// HasAnyConsumedArgs - Whether this function has any consumed arguments.
   unsigned HasAnyConsumedArgs : 1;
 
-  /// ArgInfo - There is an variable size array after the class in memory that
-  /// holds the argument types.
+  // ArgInfo - There is an variable size array after the class in memory that
+  // holds the argument types.
 
-  /// Exceptions - There is another variable size array after ArgInfo that
-  /// holds the exception types.
+  // Exceptions - There is another variable size array after ArgInfo that
+  // holds the exception types.
 
-  /// NoexceptExpr - Instead of Exceptions, there may be a single Expr* pointing
-  /// to the expression in the noexcept() specifier.
+  // NoexceptExpr - Instead of Exceptions, there may be a single Expr* pointing
+  // to the expression in the noexcept() specifier.
 
-  /// ConsumedArgs - A variable size array, following Exceptions
-  /// and of length NumArgs, holding flags indicating which arguments
-  /// are consumed.  This only appears if HasAnyConsumedArgs is true.
+  // ConsumedArgs - A variable size array, following Exceptions
+  // and of length NumArgs, holding flags indicating which arguments
+  // are consumed.  This only appears if HasAnyConsumedArgs is true.
 
   friend class ASTContext;  // ASTContext creates these.
 





More information about the cfe-commits mailing list