We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 326b332 commit 2fba9c7Copy full SHA for 2fba9c7
include/common/result.hpp
@@ -54,10 +54,6 @@ class Result {
54
Result(U&& val)
55
: val(std::forward<T>(val)) {}
56
57
- Result(Result&& other)
58
- : val(std::move(other.val)),
59
- error(std::move(other.error)) {}
60
-
61
template<typename U, typename F>
62
requires std::constructible_from<T, U> && std::constructible_from<ResultError<E>, F>
63
Result(U&& val, F&& error)
0 commit comments