Commit 70355b45 authored by Marian Triebe's avatar Marian Triebe

Fix build with GCC

parent 9700a7e3
...@@ -382,8 +382,8 @@ public: ...@@ -382,8 +382,8 @@ public:
/// is equivalent to `make_response_promise<int, int>()`. /// is equivalent to `make_response_promise<int, int>()`.
template <class... Ts> template <class... Ts>
auto make_response_promise() auto make_response_promise()
-> decltype(make_response_promise_impl<Ts...>()) { -> decltype(this->make_response_promise_impl<Ts...>()) {
return make_response_promise_impl<Ts...>(); return this->make_response_promise_impl<Ts...>();
} }
/// Creates a `typed_response_promise` and responds immediately. /// Creates a `typed_response_promise` and responds immediately.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment