Fix formating

This commit is contained in:
Patrick Niklaus
2018-04-04 22:56:47 +00:00
committed by Patrick Niklaus
parent c4b90f52c0
commit 4610fd9ff1
6 changed files with 15 additions and 14 deletions
+2 -3
View File
@@ -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 &region : regions)
{
if (!region.IsEmpty())
{
+1 -1
View File
@@ -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);
}