This commit is contained in:
Jean-Philip Desjardins 2025-01-18 12:37:04 -05:00
parent 84036c2db4
commit 648b2474a5
2 changed files with 1 additions and 10 deletions

View file

@ -2,14 +2,6 @@
#include <cassert>
CProfiler::CProfiler()
{
}
CProfiler::~CProfiler()
{
}
CProfiler::ZoneHandle CProfiler::RegisterZone(const char* name)
{
#ifdef PROFILE

View file

@ -22,8 +22,7 @@ public:
typedef std::vector<ZONE> ZoneArray;
typedef std::chrono::high_resolution_clock::time_point TimePoint;
CProfiler();
virtual ~CProfiler();
virtual ~CProfiler() = default;
ZoneHandle RegisterZone(const char*);