Skip to content

Instantly share code, notes, and snippets.

@ste-phil
ste-phil / Analysis.h
Created May 22, 2023 14:06
C++ performance measurements: requires c++17, msvc
#pragma once
#include <chrono>
#include <iostream>
#include <map>
#include <iomanip>
#include <string_view>
class MemoryTracker {
private:
MemoryTracker() {}