From ed54988e37fa028c7f4a4bdad473894ee4a1327c Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Tue, 23 Jul 2024 20:47:24 -0400 Subject: [PATCH] more info in stack --- CMakeLists.txt | 2 +- include/blt/gp/stack.h | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8004a48..0e03b5b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(blt-gp VERSION 0.0.106) +project(blt-gp VERSION 0.0.107) include(CTest) diff --git a/include/blt/gp/stack.h b/include/blt/gp/stack.h index 89f1d17..86dac99 100644 --- a/include/blt/gp/stack.h +++ b/include/blt/gp/stack.h @@ -210,8 +210,11 @@ namespace blt::gp auto type_size = aligned_size(bytes); if (head->used_bytes_in_block() < static_cast(type_size)) + { + BLT_ERROR_STREAM << "Stack State:\n" << size() << "\n" << "Bytes in head: " << bytes_in_head() << "\n"; BLT_ABORT(("This stack doesn't contain enough data for this type! " + std::to_string(head->used_bytes_in_block()) + " / " + std::to_string(bytes) + " This is an invalid runtime state!").c_str()); + } auto ptr = to.allocate_bytes(type_size); to.head->metadata.offset = static_cast(ptr) + type_size;