diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-02-23 16:30:59 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-02-23 16:30:59 -0800 |
commit | 29c006d6a47e9e0d5a7943efb9102b233be95e79 (patch) | |
tree | ccc4f3dfd8c64a812ded42c40bb73fd173738698 | |
parent | 83266c767d1a785e864b4d6b5a8545a3b1aba2db (diff) | |
download | mu-29c006d6a47e9e0d5a7943efb9102b233be95e79.tar.gz |
2694
-rw-r--r-- | 010vm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc index eb848421..8ea38229 100644 --- a/010vm.cc +++ b/010vm.cc @@ -53,7 +53,7 @@ struct reagent { string original_string; string name; type_tree* type; - vector<pair<string, string_tree*> > properties; + vector<pair<string, string_tree*> > properties; // can't be a map because the string_tree sometimes needs to be NULL, which can be confusing double value; bool initialized; reagent(string s); |