Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions source2gen/include/sdk/interfaces/common/CUtlTSHash.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,13 @@ class CUtlTSHashV2 {

class HashBucket_t {
public:
CThreadSpinRWLock m_AddLock; // 0x0000
HashFixedData_t* m_pFirst; // 0x0020
HashFixedData_t* m_pFirstUncommitted; // 0x0020
IF_LINUX(char pad_0x20[0x08];)
}; // Size: 0x0028
CThreadSpinRWLock* m_AddLock; // 0x0000
HashFixedData_t* m_pFirst; // 0x008
HashFixedData_t* m_pFirstUncommitted; // 0x0010
IF_LINUX(char pad_0x18[0x08];)
}; // Size: 0x0018
// clang-19 requires an explicit template type for platform_specific
static_assert(sizeof(HashBucket_t) == platform_specific<int>{.windows = 0x28, .linux = 0x30});
static_assert(sizeof(HashBucket_t) == platform_specific<int>{.windows = 0x18, .linux = 0x20});

CUtlMemoryPoolBase m_EntryMemory;

Expand Down