From 519fc96c475680de2cc49e7811dbbfadb912cbcc Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Wed, 23 Oct 2019 17:52:09 +0000 Subject: Vendor import of stripped clang trunk r375505, the last commit before the upstream Subversion repository was made read-only, and the LLVM project migrated to GitHub: https://llvm.org/svn/llvm-project/cfe/trunk@375505 --- lib/CodeGen/EHScopeStack.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/CodeGen/EHScopeStack.h') diff --git a/lib/CodeGen/EHScopeStack.h b/lib/CodeGen/EHScopeStack.h index 3b0db35d982ba..0ed67aabcd621 100644 --- a/lib/CodeGen/EHScopeStack.h +++ b/lib/CodeGen/EHScopeStack.h @@ -199,14 +199,14 @@ public: SavedTuple Saved; template - T restore(CodeGenFunction &CGF, llvm::index_sequence) { + T restore(CodeGenFunction &CGF, std::index_sequence) { // It's important that the restores are emitted in order. The braced init // list guarantees that. return T{DominatingValue::restore(CGF, std::get(Saved))...}; } void Emit(CodeGenFunction &CGF, Flags flags) override { - restore(CGF, llvm::index_sequence_for()).Emit(CGF, flags); + restore(CGF, std::index_sequence_for()).Emit(CGF, flags); } public: -- cgit v1.2.3