]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/range/algorithm_ext/insert.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / range / algorithm_ext / insert.hpp
index c0c04c8759d25ffb241eb03d768c78bc7d2a16de..51f1b8e57933320696f32b7e670db921b30fb307 100644 (file)
@@ -39,6 +39,7 @@ inline Container& insert( Container& on, const Range& from )
     BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<Container> ));
     BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<Range> ));
     on.insert(boost::begin(from), boost::end(from));
+    return on;
 }
 
     } // namespace range