Skip to content

Commit

Permalink
remove newline on exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed Jun 9, 2015
1 parent 262cf40 commit bfad32e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/clipper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ void RangeTest(const IntPoint& Pt, bool& useFullRange)
{
std::stringstream s;
s << "Coordinate outside allowed range: ";
s << std::fixed << Pt.X << " " << Pt.Y << " " << -Pt.X << " " << -Pt.Y << "\n";
s << std::fixed << Pt.X << " " << Pt.Y << " " << -Pt.X << " " << -Pt.Y;
throw clipperException(s.str().c_str());
}
}
Expand Down

0 comments on commit bfad32e

Please sign in to comment.