summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/Sema/SemaTemplateInstantiate.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaTemplateInstantiate.cpp b/clang/lib/Sema/SemaTemplateInstantiate.cpp
index ab66ef3dfdf..c13b453c26e 100644
--- a/clang/lib/Sema/SemaTemplateInstantiate.cpp
+++ b/clang/lib/Sema/SemaTemplateInstantiate.cpp
@@ -791,7 +791,9 @@ TemplateInstantiator::TransformDeclRefExpr(DeclRefExpr *E) {
return SemaRef.ExprError();
RefE = (Expr *)RefExpr.get();
- assert(SemaRef.IsQualificationConversion(RefE->getType(),
+ assert(SemaRef.Context.hasSameUnqualifiedType(RefE->getType(),
+ NTTP->getType()) ||
+ SemaRef.IsQualificationConversion(RefE->getType(),
NTTP->getType()));
}
OpenPOWER on IntegriCloud