Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reactor: use mutable to make std::move() work.
Here we use capture-by-value and thus the generated operator() from lambda is const, making std::move(captured-value) not work. Now we make the lambda mutable to allow mutating captured value. Signed-off-by: Jianyong Chen <baluschch@gmail.com>
- Loading branch information