From e4e7ba93a03e469e1d11153bf724e422509ebab7 Mon Sep 17 00:00:00 2001 From: Aliaksey Kandratsenka Date: Sun, 10 Sep 2023 21:06:02 -0400 Subject: [PATCH] unbreak unnecessary dependency on 64-bit atomics This unbreaks builds on 32-bit arms and mipsen. --- src/tests/profile-handler_unittest.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/profile-handler_unittest.cc b/src/tests/profile-handler_unittest.cc index 3531bef..06efb34 100644 --- a/src/tests/profile-handler_unittest.cc +++ b/src/tests/profile-handler_unittest.cc @@ -39,8 +39,8 @@ DEFINE_bool(test_profiler_enabled, true, // unregister callbacks without deadlocking. Thus this // "infrastructure" below. namespace { -std::atomic allocate_count; -std::atomic free_count; +std::atomic allocate_count; +std::atomic free_count; // We also "frob" this lock down in BusyThread. Mutex allocate_lock;