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