forked from OSchip/llvm-project
Remove an unused private field exposed by the recent LLVM_DELETED_FUNCTION changes.
llvm-svn: 164104
This commit is contained in:
parent
462a36d229
commit
8760caf1f3
|
@ -28,9 +28,6 @@ namespace sema {
|
|||
/// deduction, whose success or failure was described by a
|
||||
/// TemplateDeductionResult value.
|
||||
class TemplateDeductionInfo {
|
||||
/// \brief The context in which the template arguments are stored.
|
||||
ASTContext &Context;
|
||||
|
||||
/// \brief The deduced template argument list.
|
||||
///
|
||||
TemplateArgumentList *Deduced;
|
||||
|
@ -51,7 +48,7 @@ class TemplateDeductionInfo {
|
|||
|
||||
public:
|
||||
TemplateDeductionInfo(ASTContext &Context, SourceLocation Loc)
|
||||
: Context(Context), Deduced(0), Loc(Loc), HasSFINAEDiagnostic(false) { }
|
||||
: Deduced(0), Loc(Loc), HasSFINAEDiagnostic(false) { }
|
||||
|
||||
~TemplateDeductionInfo() {
|
||||
// FIXME: if (Deduced) Deduced->Destroy(Context);
|
||||
|
|
Loading…
Reference in New Issue