mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-17 14:58:21 +00:00
Compile fixes for linux cpp++11
This commit is contained in:
@@ -48,7 +48,7 @@ ServerManager::ServerManager()
|
||||
server_entity->Reset();
|
||||
}
|
||||
else {
|
||||
world_servers.push_back(std::make_unique<WorldServer>(c));
|
||||
world_servers.push_back(std::unique_ptr<WorldServer>(new WorldServer(c)));
|
||||
}
|
||||
|
||||
});
|
||||
@@ -261,4 +261,4 @@ void ServerManager::DestroyServerByName(std::string l_name, std::string s_name,
|
||||
|
||||
++iter;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user