Home

Awesome

Build Status

cpp-mempool

C++ header-only mempool library

Examples

#include <mempool.h>

int main(int argc, char** argv) {
  unsigned capacity = 1024;
  MemPool<int> pool(capacity);

  for (auto i = 0u; i < capacity * 2; i++) {
    int *location = pool.allocate();
  }
}

Notes