Skip to content

Commit

Permalink
fixed ambigious overload
Browse files Browse the repository at this point in the history
  • Loading branch information
UniversE committed May 27, 2012
1 parent f0ffd6b commit a6bfe41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generate_map.cpp
Expand Up @@ -46,7 +46,7 @@ typedef std::map<mc::utils::level_coord, mc::rotated_level_info> levels_map;
template<typename T> template<typename T>
void dot(std::ostream& out, T total) void dot(std::ostream& out, T total)
{ {
if (total == 0x00) if (total == (T) 0x00)
{ {
out << " done!"; out << " done!";
} }
Expand Down

0 comments on commit a6bfe41

Please sign in to comment.