From c7c5ca7d6adde7c1554b1e52c0b97cb2a7f7ca60 Mon Sep 17 00:00:00 2001 From: "Stephan T. Lavavej" Date: Tue, 3 Sep 2024 22:02:21 -0700 Subject: [PATCH] Remove google/benchmark workaround (#4928) --- benchmarks/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/benchmarks/CMakeLists.txt b/benchmarks/CMakeLists.txt index 98953e0771..31572a968f 100644 --- a/benchmarks/CMakeLists.txt +++ b/benchmarks/CMakeLists.txt @@ -104,8 +104,6 @@ function(add_benchmark name) target_compile_features(benchmark-${name} PRIVATE cxx_std_${arg_CXX_STANDARD}) target_include_directories(benchmark-${name} PRIVATE inc) target_link_libraries(benchmark-${name} PRIVATE benchmark::benchmark) - # TRANSITION, google/benchmark#1450 - target_compile_definitions(benchmark-${name} PRIVATE BENCHMARK_STATIC_DEFINE) endfunction() add_benchmark(bitset_to_string src/bitset_to_string.cpp)