Code cleanup

This commit is contained in:
Victor Olin 2023-03-08 16:47:34 +01:00
parent 7bb64c0489
commit cdc802476d
6 changed files with 503 additions and 459 deletions

View file

@ -6,8 +6,6 @@
#include "event.hpp"
#include "heap.hpp"
using namespace std;
namespace GC {
class Profiler {
@ -23,7 +21,7 @@ namespace GC {
}
inline static Profiler *m_instance = nullptr;
vector<GCEvent *> m_events;
std::vector<GCEvent *> m_events;
public:
static void record(GCEventType type);