commit 8dc66b4d715f3b65ede506b98bc8ee2d0784e6d9 parent 349e7a17d3a881cdce469f3395383f501529af85 Author: [email protected] <[email protected]> Date: Tue, 17 Sep 2024 08:57:54 +0100 Direct initialization of atomics Diffstat:
M | include/kfr/cometa/memory.hpp | | | 8 | ++++---- |
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/kfr/cometa/memory.hpp b/include/kfr/cometa/memory.hpp @@ -17,10 +17,10 @@ namespace details struct memory_statistics { - std::atomic_uintptr_t allocation_count = ATOMIC_VAR_INIT(0); - std::atomic_uintptr_t allocation_size = ATOMIC_VAR_INIT(0); - std::atomic_uintptr_t deallocation_count = ATOMIC_VAR_INIT(0); - std::atomic_uintptr_t deallocation_size = ATOMIC_VAR_INIT(0); + std::atomic_uintptr_t allocation_count{ 0 }; + std::atomic_uintptr_t allocation_size{ 0 }; + std::atomic_uintptr_t deallocation_count{ 0 }; + std::atomic_uintptr_t deallocation_size{ 0 }; }; inline memory_statistics& get_memory_statistics()