Skip to content

Commit

Permalink
Review fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
bykoianko authored and tatiana-yan committed Jun 15, 2018
1 parent 7ef88db commit 0c5b3b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routing/routing_callbacks.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ inline std::string DebugPrint(RouterResultCode code)
case RouterResultCode::RouteNotFoundRedressRouteError: return "RouteNotFoundRedressRouteError";
}

std::string const result = "Unknown RouterResultCode:" + std::to_string(static_cast<int>(code));
std::string const result = "Unknown RouterResultCode: " + std::to_string(static_cast<int>(code));
ASSERT(false, (result));
return result;
}
Expand Down

0 comments on commit 0c5b3b7

Please sign in to comment.