From 9122d3516cf74ef0ff658cc50a915e1216cac40d Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 19 May 2019 13:45:02 +0200 Subject: [PATCH] Force inline GetPage(). --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 353d0a81..7c3d0ca6 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -9326,7 +9326,7 @@ struct MemoryPage int8_t data[PageSize]; }; -static inline MemoryPage& GetPage( flat_hash_map>& memmap, uint64_t page ) +static tracy_force_inline MemoryPage& GetPage( flat_hash_map>& memmap, uint64_t page ) { auto it = memmap.find( page ); if( it == memmap.end() )