[clang-tools-extra] r368991 - [clangd] llvm::integer_sequence -> std::integer_sequence.
Benjamin Kramer via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 15 04:09:22 PDT 2019
Author: d0k
Date: Thu Aug 15 04:09:22 2019
New Revision: 368991
URL: http://llvm.org/viewvc/llvm-project?rev=368991&view=rev
Log:
[clangd] llvm::integer_sequence -> std::integer_sequence.
Modified:
clang-tools-extra/trunk/clangd/Function.h
Modified: clang-tools-extra/trunk/clangd/Function.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/Function.h?rev=368991&r1=368990&r2=368991&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/Function.h (original)
+++ clang-tools-extra/trunk/clangd/Function.h Thu Aug 15 04:09:22 2019
@@ -46,7 +46,7 @@ public:
private:
template <std::size_t... Indexes, class... RestArgs>
- auto CallImpl(llvm::integer_sequence<std::size_t, Indexes...> Seq,
+ auto CallImpl(std::integer_sequence<std::size_t, Indexes...> Seq,
RestArgs &&... Rest)
-> decltype(std::get<0>(this->FuncWithArguments)(
std::forward<Args>(std::get<Indexes + 1>(this->FuncWithArguments))...,
More information about the cfe-commits
mailing list