Automated Code Change

PiperOrigin-RevId: 792014045
Change-Id: I21718f98414754ff9df242565d210f557913a143
This commit is contained in:
Abseil Team
2025-08-06 23:41:09 -07:00
committed by Copybara-Service
parent bf231ef420
commit 481ab927ae

View File

@@ -50,7 +50,7 @@ static void BM_SpinLock(benchmark::State& state) {
static absl::NoDestructor<absl::base_internal::SpinLock> spinlock(
scheduling_mode);
for (auto _ : state) {
absl::base_internal::SpinLockHolder holder(spinlock.get());
absl::base_internal::SpinLockHolder holder(*spinlock.get());
}
}