0 terminate fixed empty string. (#361)

This commit is contained in:
Branimir Karadžić
2025-12-26 10:24:16 -08:00
committed by GitHub
parent acc565e47e
commit 01cf049f97

View File

@@ -242,6 +242,7 @@ namespace bx
inline constexpr FixedStringT<MaxCapacityT>::FixedStringT()
: m_len(0)
{
m_storage[0] = '\0';
}
template<uint16_t MaxCapacityT>