about summary refs log tree commit diff stats
path: root/030container.cc
diff options
context:
space:
mode:
Diffstat (limited to '030container.cc')
-rw-r--r--030container.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/030container.cc b/030container.cc
index 3135d5f2..902afb21 100644
--- a/030container.cc
+++ b/030container.cc
@@ -108,9 +108,9 @@ struct container_metadata {
 :(before "End reagent Fields")
 container_metadata metadata;  // can't be a pointer into Container_metadata because we keep changing the base storage when we save/restore snapshots
 :(before "End reagent Copy Operator")
-metadata = old.metadata;
+metadata = other.metadata;
 :(before "End reagent Copy Constructor")
-metadata = old.metadata;
+metadata = other.metadata;
 
 :(before "End Globals")
 // todo: switch to map after figuring out how to consistently compare type trees
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169