add some Ep3 command notes

This commit is contained in:
Martin Michelsen
2025-10-22 19:47:23 -07:00
parent be4c7f80cb
commit 01b1f42bac
8 changed files with 102 additions and 75 deletions
+5 -1
View File
@@ -243,7 +243,11 @@ struct parray {
this->items[x] = s.items[x];
}
for (; x < Count; x++) {
this->items[x] = 0;
if constexpr (std::is_integral_v<ItemT>) {
this->items[x] = 0;
} else {
this->items[x] = ItemT();
}
}
} else {
for (size_t x = 0; x < Count; x++) {