We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0b938d commit ba1ab99Copy full SHA for ba1ab99
src/mpl2/src/object.h
@@ -723,9 +723,8 @@ struct Rect
723
if (lx < core_lx - 1.0 || ly < core_ly - 1.0 || ux > core_ux + 1.0
724
|| uy > core_uy + 1.0) {
725
std::cout << "Error !!!\n"
726
- << "core_lx = " << core_lx << " "
727
- << "core_ly = " << core_ly << " "
728
- << "core_ux = " << core_ux << " "
+ << "core_lx = " << core_lx << " " << "core_ly = " << core_ly
+ << " " << "core_ux = " << core_ux << " "
729
<< "core_uy = " << core_uy << std::endl;
730
}
731
0 commit comments