Syntax consolidation.

This commit is contained in:
Ivica Siladic
2023-12-04 18:42:57 +01:00
parent d00acde499
commit d9489597b3
9 changed files with 98 additions and 62 deletions

View File

@@ -20,8 +20,7 @@ class write_op {
handler_type _handler;
public:
write_op(
Owner& owner, Handler&& handler) :
write_op(Owner& owner, Handler&& handler) :
_owner(owner),
_handler(std::move(handler))
{}