diff options
Diffstat (limited to 'src/value.h')
-rw-r--r-- | src/value.h | 4 |
1 files changed, 2 insertions, 2 deletions
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<string>& 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; } |