diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 1141efa4..f3ce13af 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -6459,7 +6459,7 @@ void View::ListMemData( T ptr, T end, std::function DrawAddress, const ImGui::EndChild(); } -static inline CallstackFrameTree* GetFrameTreeItem( std::vector& tree, uint64_t idx ) +static tracy_force_inline CallstackFrameTree* GetFrameTreeItem( std::vector& tree, uint64_t idx ) { auto it = std::find_if( tree.begin(), tree.end(), [idx] ( const auto& v ) { return v.frame == idx; } ); if( it == tree.end() )