diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-02-19 17:01:09 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-02-19 17:01:37 -0800 |
commit | a284b697db8306e747afc79d90d2365152bd622f (patch) | |
tree | b4d152662e8a8d525e5fe836907680469fa6a7a0 | |
parent | 97020a9cd114c73cc9d70829274068d7a4a4140c (diff) | |
download | mu-a284b697db8306e747afc79d90d2365152bd622f.tar.gz |
2673
-rw-r--r-- | 010vm.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc index 175abaf0..f4f3cb11 100644 --- a/010vm.cc +++ b/010vm.cc @@ -98,7 +98,6 @@ struct string_tree { string_tree(string v, string_tree* r) :value(v), left(NULL), right(r) {} // advanced: tree containing strings string_tree(string_tree* l, string_tree* r) :left(l), right(r) {} - // print as s-expression }; :(before "End Globals") @@ -546,6 +545,8 @@ void dump(type_ordinal type, ostream& out) { out << "?" << type; } +//: helper to print numbers without excessive precision + :(before "End Types") struct no_scientific { double x; |