aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2011-10-15 04:06:55 +0000
committerTed Kremenek <kremenek@apple.com>2011-10-15 04:06:55 +0000
commit6a2ccc51d9b8357e1433e0029d544d95c5877a5c (patch)
tree700191d1be1afc320b2a41a6a68e477f66deb744
parentb8706f95eae8f85af01a26eee899c5daf8d6fcde (diff)
Convert stray doxygen comments to regular comments. They logically represent the fields in FunctionProtoType.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142052 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/Type.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h
index 9a4bf80c12..5a1200c477 100644
--- a/include/clang/AST/Type.h
+++ b/include/clang/AST/Type.h
@@ -2737,18 +2737,18 @@ private:
/// 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.