diff options
Diffstat (limited to 'src/game/Cell.h')
-rw-r--r-- | src/game/Cell.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Cell.h b/src/game/Cell.h index 35bcdbeea8a..a7e40a29683 100644 --- a/src/game/Cell.h +++ b/src/game/Cell.h @@ -93,13 +93,13 @@ struct TRINITY_DLL_DECL Cell y = data.Part.grid_y*MAX_NUMBER_OF_CELLS + data.Part.cell_y; } - inline bool DiffCell(const Cell &cell) const + bool DiffCell(const Cell &cell) const { return( data.Part.cell_x != cell.data.Part.cell_x || data.Part.cell_y != cell.data.Part.cell_y ); } - inline bool DiffGrid(const Cell &cell) const + bool DiffGrid(const Cell &cell) const { return( data.Part.grid_x != cell.data.Part.grid_x || data.Part.grid_y != cell.data.Part.grid_y ); |