From: Abramo Bagnara Date: Thu, 8 Nov 2012 16:27:30 +0000 (+0000) Subject: Avoid to write function name in comment. Thanks to Dmitri Gribenko. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=88adb9863bf1bbf266b044e58a1dfbdf24fbe105;p=clang Avoid to write function name in comment. Thanks to Dmitri Gribenko. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167588 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index dde875007b..628d2245a8 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/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,