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 e61a96124dd..4b77a278ddf 100644 --- a/src/game/Cell.h +++ b/src/game/Cell.h @@ -146,8 +146,8 @@ struct Cell return *this; } - bool operator==(const Cell &cell) const { return (data.All == cell.data.All); } - bool operator!=(const Cell &cell) const { return !operator==(cell); } + bool operator == (const Cell &cell) const { return (data.All == cell.data.All); } + bool operator!=(const Cell &cell) const { return !operator == (cell); } union { struct |
