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

Correct multiple consts declarations x2 (#327)

This commit is contained in:
Alex
2025-08-04 16:50:22 -04:00
committed by GitHub
parent 916f0bb440
commit e0231ddcae

View File

@ -1548,7 +1548,7 @@ KeyValues3* CKeyValues3Table::GetMember( KV3MemberId_t id )
return MembersBase()[id]; return MembersBase()[id];
} }
const const char* CKeyValues3Table::GetMemberName( const KeyValues3 *parent, KV3MemberId_t id ) const const char* CKeyValues3Table::GetMemberName( const KeyValues3 *parent, KV3MemberId_t id ) const
{ {
Assert( 0 <= id && id < m_nCount ); Assert( 0 <= id && id < m_nCount );