Apply style fix pt4

This commit is contained in:
Antz 2020-01-14 10:26:15 +00:00
parent d93dbd95fe
commit 4727d8846f
87 changed files with 710 additions and 0 deletions

View file

@ -161,13 +161,19 @@ World::~World()
///- Empty the kicked session set
for (auto const session : m_sessions)
{
delete session.second;
}
for (auto const cliCommand : m_cliCommandQueue)
{
delete cliCommand;
}
for (auto const session : m_sessionAddQueue)
{
delete session;
}
VMAP::VMapFactory::clear();
MMAP::MMapFactory::clear();
@ -1692,7 +1698,9 @@ void World::showFooter()
std::string sModules;
for (std::set<std::string>::const_iterator it = modules_.begin(); it != modules_.end(); ++it)
{
sModules = sModules + " \n" + *it;
}
sLog.outString("\n"
"_______________________________________________________\n"