diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-07-16 18:50:45 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-07-16 18:50:45 +0000 |
commit | 85f485a70fbec54c9b4562dfc4d95188ea6c9b48 (patch) | |
tree | ffe7d9cefa5fb10538b42b7db16221e4217526e6 /lib/Sema/SemaTemplateInstantiateDecl.cpp | |
parent | daa872b64d2654f2e2b4ccb1697107640ffd38a8 (diff) |
Fix rejects-valid: explicit specialization of redeclared deleted function template.
Review by Richard Smith.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160306 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaTemplateInstantiateDecl.cpp')
-rw-r--r-- | lib/Sema/SemaTemplateInstantiateDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaTemplateInstantiateDecl.cpp b/lib/Sema/SemaTemplateInstantiateDecl.cpp index 0d3e8a0ba8..a2efa597c2 100644 --- a/lib/Sema/SemaTemplateInstantiateDecl.cpp +++ b/lib/Sema/SemaTemplateInstantiateDecl.cpp @@ -2423,7 +2423,7 @@ void Sema::InstantiateExceptionSpec(SourceLocation PointOfInstantiation, bool TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl) { - if (Tmpl->isDeletedAsWritten()) + if (Tmpl->isDeleted()) New->setDeletedAsWritten(); // If we are performing substituting explicitly-specified template arguments |