Improve comments regarding design issue

This commit is contained in:
Kawe Mazidjatari 2023-03-18 00:55:03 +01:00
parent 4e12402c76
commit 1f735f1f6e

View File

@ -36,8 +36,9 @@ public:
// Has to be explicitly called due to the
// current design of our SDK. Unlike other
// Source Engine games, we couldn't import
// the memalloc singleton; we obtain it post
// init (too late for binding it against the
// the memalloc singleton as the executable
// is monolithic; we obtain it post init
// (too late for binding it against the
// new/delete operators..).
m_Memory.~CUtlMemory();
}
@ -179,8 +180,9 @@ public:
// Has to be explicitly called due to the
// current design of our SDK. Unlike other
// Source Engine games, we couldn't import
// the memalloc singleton; we obtain it post
// init (too late for binding it against the
// the memalloc singleton as the executable
// is monolithic; we obtain it post init
// (too late for binding it against the
// new/delete operators..).
m_Storage.~CUtlBinaryBlock();
}