[nostalgia] Remove usages of ::size_t

This commit is contained in:
Gary Talent 2018-04-13 19:23:42 -05:00
parent 26032a9d88
commit 7fe47a237d
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ void Zone::draw(Context *ctx) {
}
}
size_t Zone::size() {
std::size_t Zone::size() {
return sizeof(Zone) + m_bounds.width * m_bounds.height * sizeof(Tile);
}

View File

@ -51,7 +51,7 @@ struct Zone {
void draw(core::Context *ctx);
size_t size();
std::size_t size();
Tile *tile(int x, int y);