Core&Scripts: Fix clang compiler warnings

This commit is contained in:
Nay
2013-08-27 21:30:33 +01:00
parent e5dc70118a
commit 78786c7b54
15 changed files with 22 additions and 40 deletions

View File

@@ -49,7 +49,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_corpses (0)
{}
void Visit(CorpseMapType &m);
@@ -58,7 +58,6 @@ class ObjectWorldLoader
private:
Cell i_cell;
NGridType &i_grid;
Map* i_map;
public:
uint32 i_corpses;