1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-22 22:13:35 +02:00

fix indentation

This commit is contained in:
Andrey Filipenkov 2022-08-15 16:31:58 +03:00
parent e1c9903a45
commit 031ba967d3
4 changed files with 82 additions and 82 deletions

View File

@ -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)

View File

@ -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;