Remove some memset calls on non-POD types

This commit is contained in:
baldurk
2025-06-06 12:16:45 +01:00
parent f9eb25494e
commit 9bad0c5ec0
4 changed files with 36 additions and 44 deletions
@@ -401,7 +401,7 @@ private:
struct FSNode
{
FSNode() { memset(&file, 0, sizeof(file)); }
FSNode() {}
~FSNode()
{
for(FSNode *n : children)