1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 03:56:10 +08:00

Correct multiple consts declarations (#326)

This commit is contained in:
Juniper
2025-08-04 23:34:40 +03:00
committed by GAMMACASE
parent 20208f41c5
commit 7772b19b03

View File

@ -807,7 +807,7 @@ public:
int GetMemberCount() const { return m_nCount; }
Member_t GetMember( KV3MemberId_t id );
const Member_t GetMember( KV3MemberId_t id ) const { return const_cast<CKeyValues3Table*>(this)->GetMember( id ); }
const const char *GetMemberName( const KeyValues3 *parent, KV3MemberId_t id ) const;
const char *GetMemberName( const KeyValues3 *parent, KV3MemberId_t id ) const;
const Hash_t GetMemberHash( KV3MemberId_t id ) const;
CKV3MemberName GetKV3MemberName( const KeyValues3 *parent, KV3MemberId_t id ) const;