diff --git a/storm/array/TSFixedArray.hpp b/storm/array/TSFixedArray.hpp index 647fcaf..d9527d3 100644 --- a/storm/array/TSFixedArray.hpp +++ b/storm/array/TSFixedArray.hpp @@ -86,7 +86,7 @@ template void TSFixedArray::Set(uint32_t count, const T* data) { this->ReallocAndClearData(count); - for (uint32_t i; i < count; i++) { + for (uint32_t i = 0; i < count; i++) { new (&this->m_data[i]) T(data[i]); }