From e7faf92113442bfdde488aa16afc54f64411a4cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sat, 25 Jun 2016 11:20:36 +0200 Subject: [PATCH] Add missing headers --- bench/bench_adaptive_node_pool.cpp | 2 ++ bench/bench_alloc.cpp | 1 + bench/bench_alloc_expand_bwd.cpp | 1 + bench/bench_alloc_shrink_to_fit.cpp | 1 + bench/bench_alloc_stable_vector_burst.cpp | 3 +++ 5 files changed, 8 insertions(+) diff --git a/bench/bench_adaptive_node_pool.cpp b/bench/bench_adaptive_node_pool.cpp index 4367838..048e1b3 100644 --- a/bench/bench_adaptive_node_pool.cpp +++ b/bench/bench_adaptive_node_pool.cpp @@ -23,6 +23,8 @@ #include //std::cout, std::endl #include //std::vector #include //std::size_t +#include //assert + #include using boost::timer::cpu_timer; using boost::timer::cpu_times; diff --git a/bench/bench_alloc.cpp b/bench/bench_alloc.cpp index 61fb1c0..b05748e 100644 --- a/bench/bench_alloc.cpp +++ b/bench/bench_alloc.cpp @@ -18,6 +18,7 @@ #include //std::cout, std::endl #include //typeid +#include //assert #include using boost::timer::cpu_timer; diff --git a/bench/bench_alloc_expand_bwd.cpp b/bench/bench_alloc_expand_bwd.cpp index b4b123a..61bd4da 100644 --- a/bench/bench_alloc_expand_bwd.cpp +++ b/bench/bench_alloc_expand_bwd.cpp @@ -19,6 +19,7 @@ #include #include //std::allocator #include //std::cout, std::endl +#include //assert #include using boost::timer::cpu_timer; diff --git a/bench/bench_alloc_shrink_to_fit.cpp b/bench/bench_alloc_shrink_to_fit.cpp index 696f29b..271d770 100644 --- a/bench/bench_alloc_shrink_to_fit.cpp +++ b/bench/bench_alloc_shrink_to_fit.cpp @@ -22,6 +22,7 @@ #include //std::allocator #include //std::cout, std::endl +#include //assert #include using boost::timer::cpu_timer; diff --git a/bench/bench_alloc_stable_vector_burst.cpp b/bench/bench_alloc_stable_vector_burst.cpp index 7df830e..29cf1c6 100644 --- a/bench/bench_alloc_stable_vector_burst.cpp +++ b/bench/bench_alloc_stable_vector_burst.cpp @@ -20,11 +20,14 @@ #include //std::cout, std::endl #include //std::vector #include //std::size_t +#include //assert + #include #include #include #include #include + using boost::timer::cpu_timer; using boost::timer::cpu_times; using boost::timer::nanosecond_type;