From eef6e5bdbc708e95777d083aa85a265bd89694fb Mon Sep 17 00:00:00 2001 From: Hans Dembinski Date: Mon, 27 Sep 2021 10:14:29 +0200 Subject: [PATCH] use new count instead of deprecated thread_safe --- benchmark/histogram_parallel_filling.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/histogram_parallel_filling.cpp b/benchmark/histogram_parallel_filling.cpp index c58c8ac8..dfce607e 100644 --- a/benchmark/histogram_parallel_filling.cpp +++ b/benchmark/histogram_parallel_filling.cpp @@ -5,7 +5,7 @@ // or copy at http://www.boost.org/LICENSE_1_0.txt) #include -#include +#include #include #include #include @@ -29,7 +29,7 @@ using namespace boost::histogram; using namespace std::chrono_literals; using DS = dense_storage; -using DSTS = dense_storage>; +using DSTS = dense_storage>; static void NoThreads(benchmark::State& state) { std::default_random_engine gen(1);