about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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;