mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-22 22:13:35 +02:00
fix indentation
This commit is contained in:
parent
e1c9903a45
commit
031ba967d3
@ -218,9 +218,9 @@ void CServerHandler::startLocalServerAndConnect()
|
||||
{
|
||||
boost::mutex m;
|
||||
boost::unique_lock<boost::mutex> lock{m};
|
||||
logNetwork->info("[ios] wait for server");
|
||||
logNetwork->info("waiting for server");
|
||||
cond.wait(lock);
|
||||
logNetwork->info("[ios] server ready");
|
||||
logNetwork->info("server is ready");
|
||||
}
|
||||
#else
|
||||
if(shm)
|
||||
|
@ -370,7 +370,7 @@ bfs::path IVCMIDirsUNIX::serverPath() const { return binaryPath() / "vcmiserver"
|
||||
#ifdef VCMI_APPLE
|
||||
class VCMIDirsApple : public IVCMIDirsUNIX
|
||||
{
|
||||
public:
|
||||
public:
|
||||
bfs::path userConfigPath() const override;
|
||||
|
||||
std::string libraryName(const std::string& basename) const override;
|
||||
@ -383,7 +383,7 @@ std::string VCMIDirsApple::libraryName(const std::string& basename) const { retu
|
||||
#ifdef VCMI_IOS
|
||||
class VCMIDirsIOS final : public VCMIDirsApple
|
||||
{
|
||||
public:
|
||||
public:
|
||||
bfs::path userDataPath() const override;
|
||||
bfs::path userCachePath() const override;
|
||||
bfs::path userLogsPath() const override;
|
||||
@ -416,7 +416,7 @@ bfs::path VCMIDirsIOS::binaryPath() const { return {iOS_utils::bundlePath()}; }
|
||||
#elif defined(VCMI_MAC)
|
||||
class VCMIDirsOSX final : public VCMIDirsApple
|
||||
{
|
||||
public:
|
||||
public:
|
||||
boost::filesystem::path userDataPath() const override;
|
||||
boost::filesystem::path userCachePath() const override;
|
||||
boost::filesystem::path userLogsPath() const override;
|
||||
|
Loading…
Reference in New Issue
Block a user