Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
szabadka committed Jul 12, 2024
1 parent 7b3dfeb commit d0d9b8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/base/rect.h
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ class RectT {
template <typename T>
std::string Description(RectT<T> r) {
std::ostringstream os;
os << "[" << r.x0() << ".." << r.x1() << ")x" << "[" << r.y0() << ".."
<< r.y1() << ")";
os << "[" << r.x0() << ".." << r.x1() << ")x"
<< "[" << r.y0() << ".." << r.y1() << ")";
return os.str();
}

Expand Down

0 comments on commit d0d9b8c

Please sign in to comment.