diff options
Diffstat (limited to 'libs/container/bench/bench_set_alloc_v2.cpp')
-rw-r--r-- | libs/container/bench/bench_set_alloc_v2.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/container/bench/bench_set_alloc_v2.cpp b/libs/container/bench/bench_set_alloc_v2.cpp index b92759058..9c2fb9bee 100644 --- a/libs/container/bench/bench_set_alloc_v2.cpp +++ b/libs/container/bench/bench_set_alloc_v2.cpp @@ -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> > |