forked from OSchip/llvm-project
parent
a6df4650fd
commit
5c02c2af3f
|
@ -2593,7 +2593,7 @@ void Sema::AddImplicitlyDeclaredMembersToClass(Scope *S,
|
|||
Context.getFunctionType(Context.VoidTy,
|
||||
&ArgType, 1,
|
||||
false, 0,
|
||||
/*FIXME:*/false,
|
||||
/*FIXME: hasExceptionSpec*/false,
|
||||
false, 0, 0,
|
||||
FunctionType::ExtInfo()),
|
||||
/*TInfo=*/0,
|
||||
|
@ -2686,7 +2686,7 @@ void Sema::AddImplicitlyDeclaredMembersToClass(Scope *S,
|
|||
CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
|
||||
Context.getFunctionType(RetType, &ArgType, 1,
|
||||
false, 0,
|
||||
/*FIXME:*/false,
|
||||
/*FIXME: hasExceptionSpec*/false,
|
||||
false, 0, 0,
|
||||
FunctionType::ExtInfo()),
|
||||
/*TInfo=*/0, /*isStatic=*/false,
|
||||
|
@ -2722,7 +2722,7 @@ void Sema::AddImplicitlyDeclaredMembersToClass(Scope *S,
|
|||
// inline public member of its class.
|
||||
QualType Ty = Context.getFunctionType(Context.VoidTy,
|
||||
0, 0, false, 0,
|
||||
/*FIXME:*/false,
|
||||
/*FIXME: hasExceptionSpec*/false,
|
||||
false, 0, 0, FunctionType::ExtInfo());
|
||||
|
||||
DeclarationName Name
|
||||
|
|
Loading…
Reference in New Issue