Skip to content

Instantly share code, notes, and snippets.

View rofirrim's full-sized avatar

Roger Ferrer Ibáñez rofirrim

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>
/*