mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-31 11:57:15 +02:00
Remove some unused variables.
[SVN r40722]
This commit is contained in:
@@ -50,8 +50,6 @@ void assign_tests1(T* = 0)
|
|||||||
template <class T>
|
template <class T>
|
||||||
void assign_tests2(T* = 0)
|
void assign_tests2(T* = 0)
|
||||||
{
|
{
|
||||||
typename T::hasher hf;
|
|
||||||
typename T::key_equal eq;
|
|
||||||
typename T::hasher hf1(1);
|
typename T::hasher hf1(1);
|
||||||
typename T::hasher hf2(2);
|
typename T::hasher hf2(2);
|
||||||
typename T::key_equal eq1(1);
|
typename T::key_equal eq1(1);
|
||||||
|
@@ -192,7 +192,6 @@ void insert_tests2(X* = 0)
|
|||||||
|
|
||||||
{
|
{
|
||||||
X x;
|
X x;
|
||||||
const_iterator pos = x.begin();
|
|
||||||
|
|
||||||
test::random_values<X> v(1000);
|
test::random_values<X> v(1000);
|
||||||
x.insert(v.begin(), v.end());
|
x.insert(v.begin(), v.end());
|
||||||
@@ -205,7 +204,6 @@ void insert_tests2(X* = 0)
|
|||||||
|
|
||||||
{
|
{
|
||||||
X x;
|
X x;
|
||||||
const_iterator pos = x.begin();
|
|
||||||
|
|
||||||
test::random_values<X> v(1000);
|
test::random_values<X> v(1000);
|
||||||
x.insert(test::input_iterator(v.begin()), test::input_iterator(v.end()));
|
x.insert(test::input_iterator(v.begin()), test::input_iterator(v.end()));
|
||||||
|
Reference in New Issue
Block a user