diff --git a/r5dev/tier1/utlstring.h b/r5dev/tier1/utlstring.h index 4819119b..2460adc2 100644 --- a/r5dev/tier1/utlstring.h +++ b/r5dev/tier1/utlstring.h @@ -175,17 +175,6 @@ public: CUtlString( CUtlString&& moveFrom ); // = default; CUtlString &operator=( CUtlString&& moveFrom ); // = default; #endif - ~CUtlString() - { - // 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 as the executable - // is monolithic; we obtain it post init - // (too late for binding it against the - // new/delete operators..). - m_Storage.~CUtlBinaryBlock(); - } // Also can assign from a regular C-style string CUtlString &operator=( const char *src );