diff options
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/Properties.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ingen/Properties.hpp b/ingen/Properties.hpp index 39d6cf81..a80a00d9 100644 --- a/ingen/Properties.hpp +++ b/ingen/Properties.hpp @@ -67,13 +67,13 @@ public: void put(const Raul::URI& key, const Atom& value, Graph ctx = Graph::DEFAULT) { - insert(std::make_pair(key, Property(value, ctx))); + emplace(key, Property(value, ctx)); } void put(const Raul::URI& key, const URIs::Quark& value, Graph ctx = Graph::DEFAULT) { - insert(std::make_pair(key, Property(value, ctx))); + emplace(key, Property(value, ctx)); } bool contains(const Raul::URI& key, const Atom& value) { |