diff options
Diffstat (limited to 'src/game/Cell.h')
-rw-r--r-- | src/game/Cell.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Cell.h b/src/game/Cell.h index 4b77a278ddf..49e0329ace6 100644 --- a/src/game/Cell.h +++ b/src/game/Cell.h @@ -147,7 +147,7 @@ struct Cell } 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 !operator == (cell); } union { struct |