Commit dab96058 authored by Dominik Charousset's avatar Dominik Charousset

Fix formatting

parent 0694f7d1
...@@ -695,7 +695,8 @@ public: ...@@ -695,7 +695,8 @@ public:
/// @param what The action to invoke after the delay. /// @param what The action to invoke after the delay.
/// @returns A @ref disposable that allows the actor to cancel the action. /// @returns A @ref disposable that allows the actor to cancel the action.
template <class Rep, class Period, class F> template <class Rep, class Period, class F>
disposable run_delayed_weak(std::chrono::duration<Rep, Period> delay, F what) { disposable
run_delayed_weak(std::chrono::duration<Rep, Period> delay, F what) {
using std::chrono::duration_cast; using std::chrono::duration_cast;
return run_delayed_weak(duration_cast<timespan>(delay), make_action(what)); return run_delayed_weak(duration_cast<timespan>(delay), make_action(what));
} }
......
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