From 58f69374b7c76e10bca7d0038419b6c6ccb45d17 Mon Sep 17 00:00:00 2001 From: dominic <510002+dmah42@users.noreply.github.com> Date: Fri, 16 Aug 2024 15:44:48 +0100 Subject: [PATCH] remove redundant definitions --- include/benchmark/benchmark.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/benchmark/benchmark.h b/include/benchmark/benchmark.h index 23eb11356..361701ecf 100644 --- a/include/benchmark/benchmark.h +++ b/include/benchmark/benchmark.h @@ -320,11 +320,9 @@ BENCHMARK(BM_test)->Unit(benchmark::kMillisecond); #define BENCHMARK_INTERNAL_CACHELINE_ALIGNED \ __attribute__((aligned(BENCHMARK_INTERNAL_CACHELINE_SIZE))) #elif defined(_MSC_VER) -#define BENCHMARK_INTERNAL_CACHELINE_SIZE 64 #define BENCHMARK_INTERNAL_CACHELINE_ALIGNED \ __declspec(align(BENCHMARK_INTERNAL_CACHELINE_SIZE)) #else -#define BENCHMARK_INTERNAL_CACHELINE_SIZE 64 #define BENCHMARK_INTERNAL_CACHELINE_ALIGNED #endif // __GNUC__