diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-02-06 22:54:47 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-02-06 22:54:47 -0800 |
commit | 79acb7305616f9cdb8a400cac40ed8034413b79e (patch) | |
tree | 2c0d3eeb889056e3e449f7f6b7e1a3512ec77bec | |
parent | 755e45f35e02248a5edb31813d462416434ba1e2 (diff) | |
download | mu-79acb7305616f9cdb8a400cac40ed8034413b79e.tar.gz |
3740
-rw-r--r-- | 010vm.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc index fd26a81d..92384f02 100644 --- a/010vm.cc +++ b/010vm.cc @@ -481,7 +481,8 @@ reagent& reagent::operator=(const reagent& other) { if (properties.at(i).second) delete properties.at(i).second; properties.clear(); for (int i = 0; i < SIZE(other.properties); ++i) - properties.push_back(pair<string, string_tree*>(other.properties.at(i).first, other.properties.at(i).second ? new string_tree(*other.properties.at(i).second) : NULL)); + properties.push_back(pair<string, string_tree*>(other.properties.at(i).first, + other.properties.at(i).second ? new string_tree(*other.properties.at(i).second) : NULL)); name = other.name; value = other.value; initialized = other.initialized; |