Commit 459ce5a4 authored by Matthias Vallentin's avatar Matthias Vallentin

Add missing overload for expected<void>

parent e8ab1931
......@@ -375,6 +375,10 @@ public:
// nop
}
expected(no_error_t) noexcept {
// nop
}
expected(caf::error e) noexcept : error_(std::move(e)) {
// nop
}
......
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