From 7c5bad56c4cd4e927d449963cb9114d4fddf1fcd Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Thu, 5 Jan 2023 11:55:32 +0100 Subject: [PATCH] Add information to Row::operator<< --- src/Row.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Row.cpp b/src/Row.cpp index 6edde19e75..fea9a38943 100644 --- a/src/Row.cpp +++ b/src/Row.cpp @@ -328,7 +328,7 @@ ostream & operator<<(ostream & os, Row::Elements const & elts) ostream & operator<<(ostream & os, Row const & row) { - os << " pos: " << row.pos_ << " end: " << row.end_ + os << " pit: " << row.pit_ << " pos: " << row.pos_ << " end: " << row.end_ << " left_margin: " << row.left_margin << " width: " << row.dim_.wid << " right_margin: " << row.right_margin @@ -337,7 +337,8 @@ ostream & operator<<(ostream & os, Row const & row) << " separator: " << row.separator << " label_hfill: " << row.label_hfill << " end_boundary: " << row.end_boundary() - << " flushed: " << row.flushed() << "\n"; + << " flushed: " << row.flushed_ + << " rtl=" << row.rtl_ << "\n"; // We cannot use the operator above, unfortunately double x = row.left_margin; for (Row::Element const & e : row.elements_) { -- 2.39.5