From 1fa3c1956ff087a5621184e18b0d785e6c41646a Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 19 Feb 2009 01:22:22 -0400 Subject: Moved amount_t::right_justify to simply ::justify --- src/value.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/value.h') diff --git a/src/value.h b/src/value.h index 299afa82..e3190ef4 100644 --- a/src/value.h +++ b/src/value.h @@ -886,7 +886,7 @@ public: * Printing methods. */ void print(std::ostream& out, - const int first_width, + const int first_width = - 1, const int latter_width = -1, const optional& date_format = none) const; void dump(std::ostream& out, const bool relaxed = true) const; @@ -908,7 +908,7 @@ inline value_t mask_value(const string& str) { } inline std::ostream& operator<<(std::ostream& out, const value_t& val) { - val.print(out, 12); + val.print(out); return out; } -- cgit v1.2.3