diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-14 19:06:57 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-14 19:08:38 -0700 |
commit | 82ac0b7ecbc145ed8c8ecd8309166f654af1ee75 (patch) | |
tree | fb24d253bec1b3a24bf9d3e6d746111dbf4b856f /cpp/010vm | |
parent | 0edf822f996c5def4588cc207d1977cffc3e9a0c (diff) | |
download | mu-82ac0b7ecbc145ed8c8ecd8309166f654af1ee75.tar.gz |
1063 - variable names for surrounding spaces now work
This was a pain to debug.
Diffstat (limited to 'cpp/010vm')
-rw-r--r-- | cpp/010vm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/010vm b/cpp/010vm index 54fc8906..2c230c10 100644 --- a/cpp/010vm +++ b/cpp/010vm @@ -46,7 +46,7 @@ struct reagent { reagent(string s); reagent(); void set_value(int v) { value = v; initialized = true; } - string to_string(); + string to_string() const; }; :(before "struct reagent") @@ -192,7 +192,7 @@ Next_recipe_number = 1000; // consistent new numbers for each test // assigned to. properties.push_back(pair<string, vector<string> >("", vector<string>())); } - string reagent::to_string() { + string reagent::to_string() const { ostringstream out; out << "{name: \"" << name << "\", value: " << value << ", type: "; for (size_t i = 0; i < types.size(); ++i) { |