1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 12:06:07 +08:00

Correct multiple consts declarations x2 (#327)

This commit is contained in:
Alex
2025-08-04 16:50:22 -04:00
committed by GAMMACASE
parent 553165e790
commit 646d08fe4d

View File

@ -1548,7 +1548,7 @@ KeyValues3* CKeyValues3Table::GetMember( KV3MemberId_t 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 );