Force inline GetPage().

This commit is contained in:
Bartosz Taudul 2019-05-19 13:45:02 +02:00
parent 30c398cd96
commit 9122d3516c

View File

@ -9326,7 +9326,7 @@ struct MemoryPage
int8_t data[PageSize];
};
static inline MemoryPage& GetPage( flat_hash_map<uint64_t, MemoryPage, nohash<uint64_t>>& memmap, uint64_t page )
static tracy_force_inline MemoryPage& GetPage( flat_hash_map<uint64_t, MemoryPage, nohash<uint64_t>>& memmap, uint64_t page )
{
auto it = memmap.find( page );
if( it == memmap.end() )