bombomby / optick

C++ Profiler For Games

Home Page:https://optick.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EventStorage leak

Benualdo opened this issue · comments

Running progam with _CRTDBG_MAP_ALLOC indicates there's a memory leak after capture.
Adding EventStorage dtor solves the issue.

EventStorage();
~EventStorage()
{
    Clear(false);
}