mirror of
https://github.com/boostorg/container.git
synced 2025-08-02 14:04:26 +02:00
Fix unused variable warnings
This commit is contained in:
@@ -1902,7 +1902,7 @@ public:
|
|||||||
// strong
|
// strong
|
||||||
varray(varray const& other)
|
varray(varray const& other)
|
||||||
{
|
{
|
||||||
//errh::check_capacity(*this, count);
|
errh::check_capacity(*this, other.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
// strong
|
// strong
|
||||||
@@ -1922,7 +1922,7 @@ public:
|
|||||||
// basic
|
// basic
|
||||||
varray & operator=(varray const& other)
|
varray & operator=(varray const& other)
|
||||||
{
|
{
|
||||||
//errh::check_capacity(*this, other.size());
|
errh::check_capacity(*this, other.size());
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -406,7 +406,7 @@ O move_if_noexcept(I first, I last, O dst)
|
|||||||
|
|
||||||
template <typename I>
|
template <typename I>
|
||||||
inline
|
inline
|
||||||
void uninitialized_fill_dispatch(I first, I last,
|
void uninitialized_fill_dispatch(I , I ,
|
||||||
bcd::true_type const& /*is_trivially_default_constructible*/,
|
bcd::true_type const& /*is_trivially_default_constructible*/,
|
||||||
bcd::true_type const& /*disable_trivial_init*/)
|
bcd::true_type const& /*disable_trivial_init*/)
|
||||||
{}
|
{}
|
||||||
@@ -458,7 +458,7 @@ void uninitialized_fill(I first, I last, DisableTrivialInit const& disable_trivi
|
|||||||
|
|
||||||
template <typename I>
|
template <typename I>
|
||||||
inline
|
inline
|
||||||
void construct_dispatch(bcd::true_type const& /*dont_init*/, I pos)
|
void construct_dispatch(bcd::true_type const& /*dont_init*/, I /*pos*/)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
template <typename I>
|
template <typename I>
|
||||||
|
Reference in New Issue
Block a user