Remove some unused variables.

[SVN r40722]
This commit is contained in:
Daniel James
2007-11-03 16:45:49 +00:00
parent afaf28c796
commit da30fb101a
2 changed files with 0 additions and 4 deletions

View File

@ -50,8 +50,6 @@ void assign_tests1(T* = 0)
template <class T>
void assign_tests2(T* = 0)
{
typename T::hasher hf;
typename T::key_equal eq;
typename T::hasher hf1(1);
typename T::hasher hf2(2);
typename T::key_equal eq1(1);

View File

@ -192,7 +192,6 @@ void insert_tests2(X* = 0)
{
X x;
const_iterator pos = x.begin();
test::random_values<X> v(1000);
x.insert(v.begin(), v.end());
@ -205,7 +204,6 @@ void insert_tests2(X* = 0)
{
X x;
const_iterator pos = x.begin();
test::random_values<X> v(1000);
x.insert(test::input_iterator(v.begin()), test::input_iterator(v.end()));