fix: PVS-Studio V508 mark false
Signed-off-by: Vyacheslav Ivanov <islavaivanov76@gmail.com>
This commit is contained in:
@@ -16,7 +16,7 @@ namespace util {
|
||||
observer_handler add(runnable callback) {
|
||||
int id = nextid++;
|
||||
runnables[id] = std::move(callback);
|
||||
return observer_handler(new int(id), [this](int* id) {
|
||||
return observer_handler(new int(id), [this](int* id) { //-V508
|
||||
runnables.erase(*id);
|
||||
delete id;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user