diff options
Diffstat (limited to '')
-rw-r--r-- | src/WorldStorage/WSSCompact.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/WorldStorage/WSSCompact.h b/src/WorldStorage/WSSCompact.h index 88910fa96..83e9cb49f 100644 --- a/src/WorldStorage/WSSCompact.h +++ b/src/WorldStorage/WSSCompact.h @@ -40,10 +40,10 @@ protected: Json::Value m_Root; bool m_HasJsonData; - // cChunkDataCollector /*override*/s: - virtual void Entity (cEntity * a_Entity) /*override*/; - virtual void BlockEntity (cBlockEntity * a_Entity) /*override*/; - virtual void LightIsValid (bool a_IsLightValid) /*override*/; + // cChunkDataCollector overrides: + virtual void Entity (cEntity * a_Entity) override; + virtual void BlockEntity (cBlockEntity * a_Entity) override; + virtual void LightIsValid (bool a_IsLightValid) override; } ; @@ -140,10 +140,10 @@ protected: void LoadEntitiesFromJson(Json::Value & a_Value, cEntityList & a_Entities, cBlockEntityList & a_BlockEntities, cWorld * a_World); - // cWSSchema /*override*/s: - virtual bool LoadChunk(const cChunkCoords & a_Chunk) /*override*/; - virtual bool SaveChunk(const cChunkCoords & a_Chunk) /*override*/; - virtual const AString GetName(void) const /*override*/ {return "compact"; } + // cWSSchema overrides: + virtual bool LoadChunk(const cChunkCoords & a_Chunk) override; + virtual bool SaveChunk(const cChunkCoords & a_Chunk) override; + virtual const AString GetName(void) const override {return "compact"; } } ; |