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