summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clang-tools-extra/clangd/Function.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang-tools-extra/clangd/Function.h b/clang-tools-extra/clangd/Function.h
index 20aac4b5d09..365e795cc5d 100644
--- a/clang-tools-extra/clangd/Function.h
+++ b/clang-tools-extra/clangd/Function.h
@@ -106,8 +106,8 @@ private:
public:
template <class... RestArgs>
auto operator()(RestArgs &&... Rest)
- -> decltype(CallImpl(llvm::index_sequence_for<Args...>(),
- std::forward<RestArgs>(Rest)...)) {
+ -> decltype(this->CallImpl(llvm::index_sequence_for<Args...>(),
+ std::forward<RestArgs>(Rest)...)) {
#ifndef NDEBUG
assert(!WasCalled && "Can only call result of BindWithForward once.");
OpenPOWER on IntegriCloud