From a497a006eefe18e174cb69a674b75e1a6956551a Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Sat, 11 Jan 2025 15:56:21 -0500 Subject: [PATCH] last commit before swtiching to drop branch --- CMakeLists.txt | 2 +- include/blt/gp/stack.h | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b1d6d0..7d3abf6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ macro(compile_options target_name) sanitizers(${target_name}) endmacro() -project(blt-gp VERSION 0.2.9) +project(blt-gp VERSION 0.2.10) include(CTest) diff --git a/include/blt/gp/stack.h b/include/blt/gp/stack.h index 9835c4b..e8b5646 100644 --- a/include/blt/gp/stack.h +++ b/include/blt/gp/stack.h @@ -74,9 +74,12 @@ namespace blt::gp }; template - static inline constexpr blt::size_t aligned_size() noexcept + static inline constexpr size_t aligned_size() noexcept { - return aligned_size(sizeof(NO_REF_T)); + const auto bytes = aligned_size(sizeof(NO_REF_T)); + if constexpr (blt::gp::detail::has_func_drop_v) + return bytes + sizeof(size_t*); + return bytes; } static inline constexpr blt::size_t aligned_size(blt::size_t size) noexcept