summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/value.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/value.h b/include/value.h
index 77bc0e2..5f387be 100644
--- a/include/value.h
+++ b/include/value.h
@@ -469,7 +469,7 @@ public:
if (!contains(i)) continue;
// get the value and add it to the vector
- result.emplace_back(get(i));
+ result.push_back(get(i));
}
// done