Fix GetSortingBounds symbol; various fixes

Former-commit-id: c8c05c2cd5
This commit is contained in:
2022-09-29 20:24:12 -04:00
parent 1f56cefe8c
commit 8659785c5c
127 changed files with 157 additions and 248 deletions

View File

@@ -33,7 +33,7 @@ template < typename T >
class TCachedToken : public TToken< T > {
public:
TCachedToken() {}
TCachedToken(const CToken& token) : TToken< T >(token), x8_item(GetT()) {}
TCachedToken(const CToken& token) : TToken< T >(token), x8_item(nullptr) {}
T* operator*() { return x8_item; }