Commit ecf29c90 authored by Dominik Charousset's avatar Dominik Charousset

Fix formatting

parent cb40c7bd
...@@ -184,9 +184,10 @@ public: ...@@ -184,9 +184,10 @@ public:
using super::super; using super::super;
template <class U, class = std::enable_if_t< template <
std::is_constructible_v<T, U> && !std::is_constructible_v<super, U> class U,
>> class = std::enable_if_t<
std::is_constructible_v<T, U> && !std::is_constructible_v<super, U>>>
result(U&& x) result(U&& x)
: super(detail::result_base_message_init{}, T{std::forward<U>(x)}) { : super(detail::result_base_message_init{}, T{std::forward<U>(x)}) {
// nop // 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