about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-02-06 22:54:47 -0800
committerKartik K. Agaram <vc@akkartik.com>2017-02-06 22:54:47 -0800
commit79acb7305616f9cdb8a400cac40ed8034413b79e (patch)
tree2c0d3eeb889056e3e449f7f6b7e1a3512ec77bec /010vm.cc
parent755e45f35e02248a5edb31813d462416434ba1e2 (diff)
downloadmu-79acb7305616f9cdb8a400cac40ed8034413b79e.tar.gz
3740
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc3
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;