Some spring cleaning

This commit is contained in:
Victor Olin 2023-03-19 15:16:41 +01:00
parent 78ccade17d
commit 91f241dba2
6 changed files with 26 additions and 26 deletions

View file

@ -23,12 +23,12 @@ namespace GC {
inline static Profiler *m_instance = nullptr;
std::vector<GCEvent *> m_events;
std::ofstream createFileStream();
std::ofstream create_file_stream();
public:
static void record(GCEventType type);
static void record(GCEventType type, Chunk *chunk);
static void dumpTrace();
static void dump_trace();
};
}