Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
This was gated behind an `#ifdef DEBUG` so it wasn't caught on normal
builds.
  • Loading branch information
danobi committed Jan 10, 2020
1 parent d19614d commit add4117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Map::Map(const SizedType &type) {
// TODO (mmarchini): replace with DCHECK
if (!type.IsStack()) {
std::cerr << "Map::Map(SizedType) constructor should be called only with stack types" << std::endl;
abort()
abort();
}
#endif
type_ = type;
Expand Down

0 comments on commit add4117

Please sign in to comment.