From 20ceffd64a24f6c7d38e2fd4a3dc4d11828d1373 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Thu, 29 Feb 2024 15:07:35 -0500 Subject: [PATCH] allocators --- include/blt/std/allocator.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/blt/std/allocator.h b/include/blt/std/allocator.h index 9276ecf..51c79b4 100644 --- a/include/blt/std/allocator.h +++ b/include/blt/std/allocator.h @@ -23,6 +23,7 @@ #include #include #include +#include #include #include "logging.h" @@ -546,7 +547,7 @@ namespace blt ::delete[] t; } - constexpr ~constexpr_allocator() = default; + BLT_CPP20_CONSTEXPR ~constexpr_allocator() = default; }; }