diff --git a/CMakeLists.txt b/CMakeLists.txt index 8af3c48..d343083 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.20) include(cmake/color.cmake) -set(BLT_VERSION 5.2.42) +set(BLT_VERSION 5.2.43) set(BLT_TARGET BLT) diff --git a/include/blt/std/memory_util.h b/include/blt/std/memory_util.h index ede9020..7a33297 100644 --- a/include/blt/std/memory_util.h +++ b/include/blt/std/memory_util.h @@ -283,6 +283,7 @@ namespace blt::mem template, bool> = false> pointer_storage& storage(const T& type) { + // TODO!! Emscript support! #ifndef __EMSCRIPTEN__ static_assert(sizeof(T) <= sizeof(std::uintptr_t), "Type takes too many bits to be stored!"); static constexpr std::uintptr_t store_bits = (2 << (bit_storage::AVAILABLE_BITS - 1)) - 1;