Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Thomas (malinka) committed Jan 11, 2018
1 parent 153a760 commit b3677ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Map.cc
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ Map::Map(initializer_list<vector<Tile>> o)
: _tiles(o)
{}

size_t Map::Height() const
size_t Map::Width() const
{
return _tiles.size();
}

size_t Map::Width() const
size_t Map::Height() const
{
if(_tiles.begin() == _tiles.end())
return 0;
Expand Down

0 comments on commit b3677ca

Please sign in to comment.