From 7391d789d944667f220ae66038691e6edd1af437 Mon Sep 17 00:00:00 2001 From: Jason Burmark Date: Tue, 12 Oct 2021 23:47:59 -0700 Subject: [PATCH] Fix compile error in AllocatorPool --- include/RAJA/util/AllocatorPool.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/RAJA/util/AllocatorPool.hpp b/include/RAJA/util/AllocatorPool.hpp index 1c8405723a..e12dce00da 100644 --- a/include/RAJA/util/AllocatorPool.hpp +++ b/include/RAJA/util/AllocatorPool.hpp @@ -444,7 +444,7 @@ struct AllocatorPool : Allocator } } - size_t get_arena_size() const + size_t get_arena_size() { #if defined(RAJA_ENABLE_OPENMP) lock_guard lock(m_mutex);