Also show boundary when displaying Cursor value.

This commit is contained in:
Jean-Marc Lasgouttes 2014-03-17 11:14:19 +01:00
parent 220fe66a67
commit a27333144d

View File

@ -1324,7 +1324,8 @@ ostream & operator<<(ostream & os, Cursor const & cur)
os << "------------------------------- | " << cur.anchor_[i] << "\n";
}
os << " selection: " << cur.selection_
<< " x_target: " << cur.x_target_ << endl;
<< " x_target: " << cur.x_target_
<< " boundary: " << cur.boundary() << endl;
return os;
}