summaryrefslogtreecommitdiffstats
path: root/include/util/types.h
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-04-07 14:37:19 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2025-04-07 14:37:19 -0400
commita9ee3f2f7f557adbe5448e4f4fbf71c23fe808b1 (patch)
treec3c404223d852b64a57d5265221c4a2d05d0af73 /include/util/types.h
parent6bdcf74ad91e0efaa8c2e4339f5085fde8a7982b (diff)
downloaddynamic-extension-a9ee3f2f7f557adbe5448e4f4fbf71c23fe808b1.tar.gz
Implemented the legacy policies and fixed a few bugs
Diffstat (limited to 'include/util/types.h')
-rw-r--r--include/util/types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/util/types.h b/include/util/types.h
index 6e8fd69..c10f7ff 100644
--- a/include/util/types.h
+++ b/include/util/types.h
@@ -122,9 +122,9 @@ public:
size_t reccnt, ReconstructionType type) {
if (type == ReconstructionType::Merge) {
- m_tasks.push_back({{{source, all_shards_idx}, {target, all_shards_idx}}, target, reccnt});
+ m_tasks.push_back({{{source, all_shards_idx}, {target, all_shards_idx}}, target, reccnt, type});
} else {
- m_tasks.push_back({{{source, all_shards_idx}}, target, reccnt});
+ m_tasks.push_back({{{source, all_shards_idx}}, target, reccnt, type});
}
total_reccnt += reccnt;