summaryrefslogtreecommitdiff
path: root/boost/poly_collection/base_collection.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/poly_collection/base_collection.hpp')
-rw-r--r--boost/poly_collection/base_collection.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/boost/poly_collection/base_collection.hpp b/boost/poly_collection/base_collection.hpp
index e904f9f020..21aa2f8f80 100644
--- a/boost/poly_collection/base_collection.hpp
+++ b/boost/poly_collection/base_collection.hpp
@@ -24,10 +24,9 @@ namespace poly_collection{
template<typename Base,typename Allocator>
class base_collection:
- public detail::poly_collection_impl::poly_collection<
- detail::base_model<Base>,Allocator>
+ public common_impl::poly_collection<detail::base_model<Base>,Allocator>
{
- using base_type=detail::poly_collection_impl::poly_collection<
+ using base_type=common_impl::poly_collection<
detail::base_model<Base>,Allocator>;
base_type& base()noexcept{return *this;}