this silences the warning of:
```
../src/crimson/osd/osdmap_gate.cc:48:38: warning: lambda capture 'this' is not used [-Wunused-lambda-capture]
std::for_each(first, last, [epoch, this](auto& blocked_requests) {
~~^~~~
```
Signed-off-by: Kefu Chai <kchai@redhat.com>
current = epoch;
auto first = waiting_peering.begin();
auto last = waiting_peering.upper_bound(epoch);
- std::for_each(first, last, [epoch, this](auto& blocked_requests) {
+ std::for_each(first, last, [epoch](auto& blocked_requests) {
blocked_requests.second.promise.set_value(epoch);
});
waiting_peering.erase(first, last);