Skip to content
Snippets Groups Projects
Commit 8760caf1 authored by Craig Topper's avatar Craig Topper
Browse files

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

llvm-svn: 164104
parent 462a36d2
No related branches found
No related tags found
No related merge requests found
...@@ -28,9 +28,6 @@ namespace sema { ...@@ -28,9 +28,6 @@ namespace sema {
/// deduction, whose success or failure was described by a /// deduction, whose success or failure was described by a
/// TemplateDeductionResult value. /// TemplateDeductionResult value.
class TemplateDeductionInfo { class TemplateDeductionInfo {
/// \brief The context in which the template arguments are stored.
ASTContext &Context;
/// \brief The deduced template argument list. /// \brief The deduced template argument list.
/// ///
TemplateArgumentList *Deduced; TemplateArgumentList *Deduced;
...@@ -51,7 +48,7 @@ class TemplateDeductionInfo { ...@@ -51,7 +48,7 @@ class TemplateDeductionInfo {
public: public:
TemplateDeductionInfo(ASTContext &Context, SourceLocation Loc) TemplateDeductionInfo(ASTContext &Context, SourceLocation Loc)
: Context(Context), Deduced(0), Loc(Loc), HasSFINAEDiagnostic(false) { } : Deduced(0), Loc(Loc), HasSFINAEDiagnostic(false) { }
~TemplateDeductionInfo() { ~TemplateDeductionInfo() {
// FIXME: if (Deduced) Deduced->Destroy(Context); // FIXME: if (Deduced) Deduced->Destroy(Context);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment