Commit fb854f73 authored by Dominik Charousset's avatar Dominik Charousset

Integrate review feedback

parent 87a4f3c6
...@@ -64,7 +64,7 @@ public: ...@@ -64,7 +64,7 @@ public:
void deliver(expected<T> x) { void deliver(expected<T> x) {
if (x) { if (x) {
if constexpr (std::is_same<T, void>::value) if constexpr (std::is_same<T, void>::value)
deliver_impl(make_message()); deliver();
else else
deliver(std::move(*x)); deliver(std::move(*x));
} else { } else {
......
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