1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-05 18:27:47 +00:00

fixed style #4

This commit is contained in:
AriAvery 2018-07-16 16:13:39 +02:00
parent e4aeaaae8b
commit 500b194762
2 changed files with 1 additions and 2 deletions

View file

@ -18,7 +18,6 @@
{ {
"name": "x86-Release", "name": "x86-Release",
"generator": "Visual Studio 14 2015", "generator": "Visual Studio 14 2015",
"configurationType": "Release",
"buildRoot": "${env.USERPROFILE}\\CMakeBuild\\${workspaceHash}\\build\\${name}", "buildRoot": "${env.USERPROFILE}\\CMakeBuild\\${workspaceHash}\\build\\${name}",
"cmakeCommandArgs": "", "cmakeCommandArgs": "",
"buildCommandArgs": "-m -v:minimal", "buildCommandArgs": "-m -v:minimal",

View file

@ -21,8 +21,8 @@ class HousingZone : public Zone
/* returns current ward number for this zone */ /* returns current ward number for this zone */
uint8_t getWardNum() const; uint8_t getWardNum() const;
const uint32_t m_wardMaxNum = 18; const uint32_t m_wardMaxNum = 18;
private: private:
uint8_t m_wardNum; uint8_t m_wardNum;
}; };