diff --git a/src/llfs/packed_array.hpp b/src/llfs/packed_array.hpp index 850944c..4ef8454 100644 --- a/src/llfs/packed_array.hpp +++ b/src/llfs/packed_array.hpp @@ -145,8 +145,6 @@ inline usize packed_array_size(usize item_count, batt::StaticType = {}) { const little_u24 packed_count = item_count; - BATT_ASSERT_EQ(static_cast(packed_count.value()), item_count); - return sizeof(PackedArray) + sizeof(T) * item_count; }