Skip to content

Instantly share code, notes, and snippets.

View mattbettcher's full-sized avatar

Matthew Bettcher mattbettcher

  • Tidal Wave Innovations
  • United States
View GitHub Profile
@rofirrim
rofirrim / minipool.hpp
Last active March 7, 2022 10:14
Very simple memory pool
#ifndef MINIPOOL_H
#define MINIPOOL_H
#include <cassert>
#include <cstddef>
#include <memory>
#include <new>
#include <utility>
/*