Subject: Re: [Boost-users] Is it possible to put a std::unique_ptr into a mulit_index container?
From: Igor R (boost.lists_at_[hidden])
Date: 2012-10-24 09:50:50


> Is it possible to put a std::unique_ptr into a mulit_index container?

No, it's impossible.
c++11 STL containers have emplace or insert(&&) member functions, but
multi-index doesn't.