]> granicus.if.org Git - clang/commitdiff
CGClass.cpp: [PR14335] Remove comma-separated \param, for now. [-Wdocumentation]
authorNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 24 Dec 2012 02:03:30 +0000 (02:03 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 24 Dec 2012 02:03:30 +0000 (02:03 +0000)
/// \param argBegin,argEnd the arguments to evaluate and pass to the constructor

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171015 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGClass.cpp

index 4e0fe9a58b33f4557a930e17448b1fd4b5a7e2f1..585d3ba54e7fcf3ddd595807e8cb6988bfe87084 100644 (file)
@@ -1089,8 +1089,6 @@ void CodeGenFunction::EnterDtorCleanups(const CXXDestructorDecl *DD,
 /// constructor for each of several members of an array.
 ///
 /// \param ctor the constructor to call for each element
-/// \param argBegin,argEnd the arguments to evaluate and pass to the
-///   constructor
 /// \param arrayType the type of the array to initialize
 /// \param arrayBegin an arrayType*
 /// \param zeroInitialize true if each element should be
@@ -1116,8 +1114,6 @@ CodeGenFunction::EmitCXXAggrConstructorCall(const CXXConstructorDecl *ctor,
 /// \param ctor the constructor to call for each element
 /// \param numElements the number of elements in the array;
 ///   may be zero
-/// \param argBegin,argEnd the arguments to evaluate and pass to the
-///   constructor
 /// \param arrayBegin a T*, where T is the type constructed by ctor
 /// \param zeroInitialize true if each element should be
 ///   zero-initialized before it is constructed