Removed more warnings, mostly related to unused-variable

issue #121

We still have to work on unused-parameter
This commit is contained in:
Yehonal 2017-09-18 03:16:32 +02:00
parent cf627d8327
commit 5ec07ef31f
78 changed files with 190 additions and 213 deletions

View file

@ -23,7 +23,7 @@ class ObjectWorldLoader
{
public:
explicit ObjectWorldLoader(ObjectGridLoader& gloader)
: i_cell(gloader.i_cell), i_grid(gloader.i_grid), i_map(gloader.i_map), i_corpses (0)
: i_cell(gloader.i_cell), i_map(gloader.i_map), i_grid(gloader.i_grid), i_corpses (0)
{}
void Visit(CorpseMapType &m);
@ -32,9 +32,9 @@ class ObjectWorldLoader
private:
Cell i_cell;
NGridType &i_grid;
Map* i_map;
public:
NGridType &i_grid;
uint32 i_corpses;
};