summaryrefslogtreecommitdiff
path: root/boost/container/flat_set.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/container/flat_set.hpp')
-rw-r--r--boost/container/flat_set.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/container/flat_set.hpp b/boost/container/flat_set.hpp
index 8f592798d2..a99e70786a 100644
--- a/boost/container/flat_set.hpp
+++ b/boost/container/flat_set.hpp
@@ -968,17 +968,17 @@ class flat_multiset
: base_t(static_cast<const base_t&>(x))
{}
- //! @copydoc ::boost::container::flat_set(flat_set &&)
+ //! @copydoc ::boost::container::flat_set::flat_set(flat_set &&)
flat_multiset(BOOST_RV_REF(flat_multiset) x)
: base_t(boost::move(static_cast<base_t&>(x)))
{}
- //! @copydoc ::boost::container::flat_set(const flat_set &, const allocator_type &)
+ //! @copydoc ::boost::container::flat_set::flat_set(const flat_set &, const allocator_type &)
flat_multiset(const flat_multiset& x, const allocator_type &a)
: base_t(static_cast<const base_t&>(x), a)
{}
- //! @copydoc ::boost::container::flat_set(flat_set &&, const allocator_type &)
+ //! @copydoc ::boost::container::flat_set::flat_set(flat_set &&, const allocator_type &)
flat_multiset(BOOST_RV_REF(flat_multiset) x, const allocator_type &a)
: base_t(BOOST_MOVE_BASE(base_t, x), a)
{}