diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-09-13 11:08:07 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-09-13 11:09:00 +0900 |
commit | b5c87084afaef42b2d058f68091be31988a6a874 (patch) | |
tree | adef9a65870a41181687e11d57fdf98e7629de3c /boost/serialization/hash_map.hpp | |
parent | 34bd32e225e2a8a94104489b31c42e5801cc1f4a (diff) | |
download | boost-b5c87084afaef42b2d058f68091be31988a6a874.tar.gz boost-b5c87084afaef42b2d058f68091be31988a6a874.tar.bz2 boost-b5c87084afaef42b2d058f68091be31988a6a874.zip |
Imported Upstream version 1.64.0upstream/1.64.0
Change-Id: Id9212edd016dd55f21172c427aa7894d1d24148b
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'boost/serialization/hash_map.hpp')
-rw-r--r-- | boost/serialization/hash_map.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/boost/serialization/hash_map.hpp b/boost/serialization/hash_map.hpp index 615ace8d8a..22626db683 100644 --- a/boost/serialization/hash_map.hpp +++ b/boost/serialization/hash_map.hpp @@ -25,6 +25,7 @@ #include <boost/serialization/hash_collections_save_imp.hpp> #include <boost/serialization/hash_collections_load_imp.hpp> #include <boost/serialization/split_free.hpp> +#include <boost/move/utility_core.hpp> namespace boost { namespace serialization { @@ -45,7 +46,7 @@ struct archive_input_hash_map // borland fails silently w/o full namespace ar >> boost::serialization::make_nvp("item", t.reference()); std::pair<typename Container::const_iterator, bool> result = - s.insert(t.reference()); + s.insert(boost::move(t.reference())); // note: the following presumes that the map::value_type was NOT tracked // in the archive. This is the usual case, but here there is no way // to determine that. @@ -72,7 +73,7 @@ struct archive_input_hash_multimap // borland fails silently w/o full namespace ar >> boost::serialization::make_nvp("item", t.reference()); typename Container::const_iterator result - = s.insert(t.reference()); + = s.insert(boost::move(t.reference())); // note: the following presumes that the map::value_type was NOT tracked // in the archive. This is the usual case, but here there is no way // to determine that. |