diff options
author | Spp <none@none> | 2010-04-08 08:20:08 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-08 08:20:08 +0200 |
commit | 4635fbc0201846721287a1eb730491262237babd (patch) | |
tree | 5b02b41f0099fd9d3af7f3a826ef0ca6dfe80748 /src/game/Cell.h | |
parent | 46f0674e237dd8fe97ba4f0769e18b4adfce841b (diff) |
Code Style (game + scripts only):
"!=" --> " != " (when needed)
" !=" --> " !="
"!= " --> "!= "
--HG--
branch : trunk
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 |