1

initialize for index variable

This commit is contained in:
2022-07-24 02:39:49 +02:00
parent 3034c4d450
commit aaa762d70e

View File

@ -159,7 +159,7 @@ namespace bse {
return; return;
} }
for (std::size_t i; i < size(); ++i) { for (std::size_t i = 0; i < size(); ++i) {
buf[i].~T(); // TODO: I think delete[] buf calls these, verify that buf[i].~T(); // TODO: I think delete[] buf calls these, verify that
} }
delete[] buf; delete[] buf;