From ad9f2e21cdb0160a298ed265b41912997ac2cc09 Mon Sep 17 00:00:00 2001 From: Abramo Bagnara Date: Thu, 8 Nov 2012 16:27:30 +0000 Subject: [PATCH] Avoid to write function name in comment. Thanks to Dmitri Gribenko. llvm-svn: 167588 --- clang/lib/Sema/SemaDecl.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp index dde8750..628d224 100644 --- a/clang/lib/Sema/SemaDecl.cpp +++ b/clang/lib/Sema/SemaDecl.cpp @@ -3805,9 +3805,9 @@ Decl *Sema::HandleDeclarator(Scope *S, Declarator &D, return New; } -/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array -/// types into constant array types in certain situations which would otherwise -/// be errors (for GCC compatibility). +/// Helper method to turn variable array types into constant array +/// types in certain situations which would otherwise be errors (for +/// GCC compatibility). static QualType TryToFixInvalidVariablyModifiedType(QualType T, ASTContext &Context, bool &SizeIsNegative, @@ -3875,7 +3875,6 @@ static QualType TryToFixInvalidVariablyModifiedType(QualType T, Res, ArrayType::Normal, 0); } -/// FixInvalidVariablyModifiedTypeLoc static void FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) { if (PointerTypeLoc* SrcPTL = dyn_cast(&SrcTL)) { @@ -3903,9 +3902,9 @@ FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) { DstATL->setRBracketLoc(SrcATL->getRBracketLoc()); } -/// TryToFixInvalidVariablyModifiedTypeSourceInfo - Helper method to turn -/// variable array types into constant array types in certain situations -/// which would otherwise be errors (for GCC compatibility). +/// Helper method to turn variable array types into constant array +/// types in certain situations which would otherwise be errors (for +/// GCC compatibility). static TypeSourceInfo* TryToFixInvalidVariablyModifiedTypeSourceInfo(TypeSourceInfo *TInfo, ASTContext &Context, -- 2.7.4