From: James Dennett Date: Fri, 15 Jun 2012 08:02:32 +0000 (+0000) Subject: Documentation cleanup: eliminated Doxygen warnings by deleting a doc comment X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ef03ff14813c5778220632994a1529dc649129d;p=clang Documentation cleanup: eliminated Doxygen warnings by deleting a doc comment on ASTContext::CreateTypeSourceInfo that duplicated information from the (more complete) version in ASTContext.h. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158504 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index b2c3c5e1d4..af2adb5f7b 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp @@ -1342,14 +1342,6 @@ void ASTContext::setBlockVarCopyInits(VarDecl*VD, Expr* Init) { BlockVarCopyInits[VD] = Init; } -/// \brief Allocate an uninitialized TypeSourceInfo. -/// -/// The caller should initialize the memory held by TypeSourceInfo using -/// the TypeLoc wrappers. -/// -/// \param T the type that will be the basis for type source info. This type -/// should refer to how the declarator was written in source code, not to -/// what type semantic analysis resolved the declarator to. TypeSourceInfo *ASTContext::CreateTypeSourceInfo(QualType T, unsigned DataSize) const { if (!DataSize)