aboutsummaryrefslogtreecommitdiffhomepage
path: root/absl/synchronization/internal/graphcycles.cc
diff options
context:
space:
mode:
Diffstat (limited to 'absl/synchronization/internal/graphcycles.cc')
-rw-r--r--absl/synchronization/internal/graphcycles.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/absl/synchronization/internal/graphcycles.cc b/absl/synchronization/internal/graphcycles.cc
index 9bc9c8a..28ad172 100644
--- a/absl/synchronization/internal/graphcycles.cc
+++ b/absl/synchronization/internal/graphcycles.cc
@@ -56,8 +56,7 @@ static base_internal::LowLevelAlloc::Arena* arena;
static void InitArenaIfNecessary() {
arena_mu.Lock();
if (arena == nullptr) {
- arena = base_internal::LowLevelAlloc::NewArena(
- 0, base_internal::LowLevelAlloc::DefaultArena());
+ arena = base_internal::LowLevelAlloc::NewArena(0);
}
arena_mu.Unlock();
}