Commit 7522c7e3 authored by Xavier Thompson's avatar Xavier Thompson

fork.hpp: Wrap too-long line over multiple lines

parent 15018887
......@@ -21,7 +21,9 @@ namespace typon
std::coroutine_handle<promise_type> _coroutine;
Fork(std::coroutine_handle<promise_type> coroutine) noexcept : _coroutine(coroutine) {}
Fork(std::coroutine_handle<promise_type> coroutine) noexcept
: _coroutine(coroutine)
{}
Fork(const Fork &) = delete;
Fork& operator=(const Fork &) = delete;
......
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