Removed unused variables warnings.

This commit is contained in:
Ion Gaztañaga
2014-10-01 00:32:43 +02:00
parent e1b42600c7
commit d8d034661a
2 changed files with 0 additions and 3 deletions

View File

@@ -158,7 +158,6 @@ void test_list< List_Type, Value_Container >
list_type list(values.begin(), values.end());
list.remove_and_dispose_if(is_odd(), test::empty_disposer());
int init_values [] = { 2, 4 };
typename list_type::iterator i = list.begin(), e = list.end();
TEST_INTRUSIVE_SEQUENCE( init_values, list.begin() );
}
{

View File

@@ -169,14 +169,12 @@ void test_slist< List_Type, Value_Container >
list_type list(values.begin(), values.end());
list.remove_and_dispose_if(is_even(), test::empty_disposer());
int init_values [] = { 1, 3, 5 };
typename list_type::iterator i = list.begin(), e = list.end();
TEST_INTRUSIVE_SEQUENCE( init_values, list.begin() );
}
{
list_type list(values.begin(), values.end());
list.remove_and_dispose_if(is_odd(), test::empty_disposer());
int init_values [] = { 2, 4 };
typename list_type::iterator i = list.begin(), e = list.end();
TEST_INTRUSIVE_SEQUENCE( init_values, list.begin() );
}
{