about summary refs log tree commit diff stats
path: root/029tools.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-27 10:32:34 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-27 10:32:34 -0800
commitbb7142dbc422dbb61de8320e6695289835fd29d5 (patch)
tree648065c1e366d9a44cd59cbf9f38dabc3470cf08 /029tools.cc
parentc193f23217142a1ae365485f28cba9e1fb8aed15 (diff)
downloadmu-bb7142dbc422dbb61de8320e6695289835fd29d5.tar.gz
2475 - allow addresses to be converted to numbers
It's just the other direction we want to avoid.
Diffstat (limited to '029tools.cc')
-rw-r--r--029tools.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/029tools.cc b/029tools.cc
index 0e14b1d4..d7865a49 100644
--- a/029tools.cc
+++ b/029tools.cc
@@ -83,9 +83,8 @@ string print_mu(const reagent& r, const vector<double>& data) {
     return r.name+' ';
   // End print Special-cases(reagent r, data)
   ostringstream out;
-  for (long long i = 0; i < SIZE(data); ++i) {
+  for (long long i = 0; i < SIZE(data); ++i)
     out << no_scientific(data.at(i)) << ' ';
-  }
   return out.str();
 }