Fix formating
This commit is contained in:
committed by
Patrick Niklaus
parent
c4b90f52c0
commit
4610fd9ff1
@@ -221,10 +221,9 @@ struct SharedRegionRegister
|
||||
}
|
||||
}
|
||||
|
||||
template<typename OutIter>
|
||||
void List(OutIter out) const
|
||||
template <typename OutIter> void List(OutIter out) const
|
||||
{
|
||||
for (const auto& region : regions)
|
||||
for (const auto ®ion : regions)
|
||||
{
|
||||
if (!region.IsEmpty())
|
||||
{
|
||||
|
||||
@@ -63,7 +63,7 @@ class SharedMemory
|
||||
{
|
||||
shm = boost::interprocess::xsi_shared_memory(boost::interprocess::open_only, key);
|
||||
|
||||
util::Log(logDEBUG) << "opening " << (int) shm.get_shmid() << " from id " << (int) id;
|
||||
util::Log(logDEBUG) << "opening " << (int)shm.get_shmid() << " from id " << (int)id;
|
||||
|
||||
region = boost::interprocess::mapped_region(shm, boost::interprocess::read_only);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user