diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-05-06 08:33:15 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-05-06 08:33:15 -0700 |
commit | 43b866d1997e82bfebd6c40881e33a0edd2bf340 (patch) | |
tree | 565c40a8dce9d5b831c38b5c6c3800873090dfd4 /029tools.cc | |
parent | 3473c63ad94756d6f79ddd5c48813e79d87429ca (diff) | |
download | mu-43b866d1997e82bfebd6c40881e33a0edd2bf340.tar.gz |
2932
More consistent labeling of waypoints. Use types only when you need to distinguish between function overloadings. Otherwise just use variable names unless it's truly not apparent what they are (like that the result is a recipe in "End Rewrite Instruction").
Diffstat (limited to '029tools.cc')
-rw-r--r-- | 029tools.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/029tools.cc b/029tools.cc index cb24fd85..faab1eb0 100644 --- a/029tools.cc +++ b/029tools.cc @@ -81,7 +81,7 @@ def main [ string print_mu(const reagent& r, const vector<double>& data) { if (is_literal(r)) return r.name+' '; - // End print Special-cases(reagent r, data) + // End print Special-cases(r, data) ostringstream out; for (long long i = 0; i < SIZE(data); ++i) out << no_scientific(data.at(i)) << ' '; |