mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Prevent inlining of vector reallocation function.
This commit is contained in:
parent
70ac7d3223
commit
8c30f75b4d
@ -4,6 +4,7 @@
|
||||
#include <assert.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "../common/TracyForceInline.hpp"
|
||||
#include "TracyMemory.hpp"
|
||||
#include "TracyPopcnt.hpp"
|
||||
|
||||
@ -167,7 +168,7 @@ public:
|
||||
}
|
||||
|
||||
private:
|
||||
void AllocMore()
|
||||
tracy_no_inline void AllocMore()
|
||||
{
|
||||
if( m_ptr == nullptr )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user