mirror of
https://github.com/boostorg/range.git
synced 2025-07-30 04:47:25 +02:00
strided.cpp unit test has the deque test removed.
This commit is contained in:
@ -11,6 +11,9 @@
|
|||||||
// The strided_defect_Trac5014 test case is a modified version of a test case
|
// The strided_defect_Trac5014 test case is a modified version of a test case
|
||||||
// contributed by Michel Morin as part of the trac ticket.
|
// contributed by Michel Morin as part of the trac ticket.
|
||||||
//
|
//
|
||||||
|
// The deque test case has been removed due to erroneous standard library
|
||||||
|
// implementations causing test failures.
|
||||||
|
//
|
||||||
#include <boost/range/adaptor/strided.hpp>
|
#include <boost/range/adaptor/strided.hpp>
|
||||||
|
|
||||||
#include <boost/config.hpp>
|
#include <boost/config.hpp>
|
||||||
@ -21,7 +24,6 @@
|
|||||||
#include <boost/range/algorithm_ext.hpp>
|
#include <boost/range/algorithm_ext.hpp>
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <deque>
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
@ -160,7 +162,6 @@ namespace boost
|
|||||||
void strided_test()
|
void strided_test()
|
||||||
{
|
{
|
||||||
strided_test_impl< std::vector<int> >();
|
strided_test_impl< std::vector<int> >();
|
||||||
strided_test_impl< std::deque<int> >();
|
|
||||||
strided_test_impl< std::list<int> >();
|
strided_test_impl< std::list<int> >();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user