about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-23 16:30:59 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-23 16:30:59 -0800
commit29c006d6a47e9e0d5a7943efb9102b233be95e79 (patch)
treeccc4f3dfd8c64a812ded42c40bb73fd173738698 /010vm.cc
parent83266c767d1a785e864b4d6b5a8545a3b1aba2db (diff)
downloadmu-29c006d6a47e9e0d5a7943efb9102b233be95e79.tar.gz
2694
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc2
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);