From 53c2b667805f7ba103000974dae03ed4e7077fb5 Mon Sep 17 00:00:00 2001 From: Brett Date: Sun, 18 Aug 2024 13:43:36 -0400 Subject: [PATCH] working on a thread safe huge page allocator --- CMakeLists.txt | 2 +- include/blt/gp/stack.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 484f30d..2dd503d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(blt-gp VERSION 0.1.8) +project(blt-gp VERSION 0.1.9) include(CTest) diff --git a/include/blt/gp/stack.h b/include/blt/gp/stack.h index da808a3..be3a9fa 100644 --- a/include/blt/gp/stack.h +++ b/include/blt/gp/stack.h @@ -20,6 +20,7 @@ #define BLT_GP_STACK_H #include +#include #include #include #include