forked from boostorg/container
Massive dependency reduction. Removed dependency on several boost libraries and standard C++ headers.
This commit is contained in:
@@ -8,9 +8,9 @@
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "boost/container/set.hpp"
|
||||
#include "boost/container/allocator.hpp"
|
||||
#include "bench_set.hpp"
|
||||
#include <boost/container/set.hpp>
|
||||
#include <boost/container/allocator.hpp>
|
||||
|
||||
int main()
|
||||
{
|
||||
@@ -19,7 +19,7 @@ int main()
|
||||
fill_range_ints();
|
||||
fill_range_strings();
|
||||
|
||||
//set<..., allocator_v2> vs. set
|
||||
//set<..., version_2> vs. set
|
||||
launch_tests< set<int, std::less<int>, allocator<int> >, set<int> >
|
||||
("set<int, ..., allocator<int>", "set<int>");
|
||||
launch_tests< set<string, std::less<string>, allocator<string> >, set<string> >
|
||||
|
||||
Reference in New Issue
Block a user