diff options
author | John Wiegley <johnw@newartisans.com> | 2010-03-07 22:47:07 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-03-08 01:11:48 -0500 |
commit | 75b7294a6db10e7f7b18b6aeef1aa0f568124a1d (patch) | |
tree | 0fecbc12acaacb33cf3c241c536de3347d2742ed /src/value.h | |
parent | 7e79cd82cd4ad5f87f40e6beebdb53e65bb11168 (diff) | |
download | fork-ledger-75b7294a6db10e7f7b18b6aeef1aa0f568124a1d.tar.gz fork-ledger-75b7294a6db10e7f7b18b6aeef1aa0f568124a1d.tar.bz2 fork-ledger-75b7294a6db10e7f7b18b6aeef1aa0f568124a1d.zip |
Rewrite the "print" command as a custom function
There ended up being too many corner cases for the generalized formatter
to handle.
Diffstat (limited to 'src/value.h')
-rw-r--r-- | src/value.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/value.h b/src/value.h index 2e59366e..1c1d8b6c 100644 --- a/src/value.h +++ b/src/value.h @@ -919,11 +919,11 @@ public: /** * Printing methods. */ - void print(std::ostream& out, - const int first_width = -1, - const int latter_width = -1, - const bool right_justify = false, - const bool colorize = false) const; + void print(std::ostream& out, + const int first_width = -1, + const int latter_width = -1, + const bool right_justify = false, + const bool colorize = false) const; void dump(std::ostream& out, const bool relaxed = true) const; /** |