Home | History | Annotate | Download | only in Sema

Lines Matching refs:FD

4133 bool Sema::DeduceReturnType(FunctionDecl *FD, SourceLocation Loc,
4135 assert(FD->getReturnType()->isUndeducedType());
4137 if (FD->getTemplateInstantiationPattern())
4138 InstantiateFunctionDefinition(Loc, FD);
4140 bool StillUndeduced = FD->getReturnType()->isUndeducedType();
4141 if (StillUndeduced && Diagnose && !FD->isInvalidDecl()) {
4142 Diag(Loc, diag::err_auto_fn_used_before_defined) << FD;
4143 Diag(FD->getLocation(), diag::note_callee_decl) << FD;