Runtime/math matches; better libc headers

Former-commit-id: bef7db1748
This commit is contained in:
2022-08-25 23:46:24 -04:00
parent 75f08901d8
commit 00c77e6195
116 changed files with 5434 additions and 973 deletions

View File

@@ -29,7 +29,7 @@ template < typename T >
class TCachedToken : public TToken< T > {
public:
TCachedToken() {}
TCachedToken(const CToken& token) : TToken(token), x8_item(nullptr) {}
TCachedToken(const CToken& token) : TToken< T >(token), x8_item(nullptr) {}
// TODO
operator const TToken< T >&() const;
@@ -42,7 +42,7 @@ template < typename T >
class TLockedToken : public TCachedToken< T > {
public:
TLockedToken() {}
TLockedToken(const CToken& token) : TCachedToken(token) { Lock(); }
TLockedToken(const CToken& token) : TCachedToken< T >(token) { this->Lock(); }
// TODO
operator const TToken< T >&() const;