Remove an unused private field exposed by the recent LLVM_DELETED_FUNCTION changes.

llvm-svn: 164104
This commit is contained in:
Craig Topper 2012-09-18 05:30:57 +00:00
parent 462a36d229
commit 8760caf1f3
1 changed files with 1 additions and 4 deletions

View File

@ -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);