diff options
Diffstat (limited to 'src/game/CellImpl.h')
-rw-r--r-- | src/game/CellImpl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/CellImpl.h b/src/game/CellImpl.h index dad233722e4..d906e81a5c9 100644 --- a/src/game/CellImpl.h +++ b/src/game/CellImpl.h @@ -56,7 +56,7 @@ Cell::Visit(const CellPair& standing_cell, TypeContainerVisitor<T, CONTAINER> &v CellPair begin_cell = standing_cell; CellPair end_cell = standing_cell; - switch( district ) + switch(district) { case ALL_DISTRICT: { @@ -112,7 +112,7 @@ Cell::Visit(const CellPair& standing_cell, TypeContainerVisitor<T, CONTAINER> &v } default: { - assert( false ); + assert(false); break; } } |