Skip to content

Commit 2f0700a

Browse files
committed
[clang][Interp] Add a missing template keyword
This broke a buildbot: https://lab.llvm.org/buildbot/#/builders/190/builds/1326
1 parent 5d79110 commit 2f0700a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/AST/Interp/Compiler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3995,7 +3995,7 @@ bool Compiler<Emitter>::VisitCXXThisExpr(const CXXThisExpr *E) {
39953995
}
39963996

39973997
for (unsigned I = StartIndex, N = InitStack.size(); I != N; ++I) {
3998-
if (!InitStack[I].emit<Emitter>(this, E))
3998+
if (!InitStack[I].template emit<Emitter>(this, E))
39993999
return false;
40004000
}
40014001
return true;

0 commit comments

Comments
 (0)