about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-19 17:01:09 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-19 17:01:37 -0800
commita284b697db8306e747afc79d90d2365152bd622f (patch)
treeb4d152662e8a8d525e5fe836907680469fa6a7a0
parent97020a9cd114c73cc9d70829274068d7a4a4140c (diff)
downloadmu-a284b697db8306e747afc79d90d2365152bd622f.tar.gz
2673
-rw-r--r--010vm.cc3
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;