From 1732f39a4237835c3b90a886872a8efc6a9b37b4 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Thu, 29 Feb 2024 10:14:03 -0500 Subject: [PATCH] vec --- include/blt/std/allocator.h | 2 +- include/blt/std/vector.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/include/blt/std/allocator.h b/include/blt/std/allocator.h index 4a7bc00..7ef1b25 100644 --- a/include/blt/std/allocator.h +++ b/include/blt/std/allocator.h @@ -274,7 +274,7 @@ namespace blt private: std::vector blocks; }; - + // template // class bump_allocator : public allocator_base // { diff --git a/include/blt/std/vector.h b/include/blt/std/vector.h index 78a9b5f..ca7d583 100644 --- a/include/blt/std/vector.h +++ b/include/blt/std/vector.h @@ -21,6 +21,7 @@ #include #include +#include #include "ranges.h" #include