mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 16:46:47 +00:00
Shm: fix unused value
This commit is contained in:
parent
8f60929f85
commit
ea68e3b1e1
|
@ -276,7 +276,7 @@ struct UnmanagedRegion
|
|||
throw TransportError(tools::ToString("Unmanaged Region with id ", cfg.id.value(), " has already been registered. Only unique IDs per session are allowed."));
|
||||
}
|
||||
|
||||
shmRegions->emplace(cfg.id.value(), RegionInfo(cfg.path.c_str(), cfg.creationFlags, cfg.userFlags, cfg.size, alloc)).second;
|
||||
shmRegions->emplace(cfg.id.value(), RegionInfo(cfg.path.c_str(), cfg.creationFlags, cfg.userFlags, cfg.size, alloc));
|
||||
(eventCounter->fCount)++;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user