mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Add const qualifiers
This commit is contained in:
parent
1c13c9807b
commit
80d99744db
@ -58,12 +58,12 @@ void CBitBuffer::SetDebugName(const char* pName)
|
||||
m_pDebugName = pName;
|
||||
}
|
||||
|
||||
const char* CBitBuffer::GetDebugName()
|
||||
const char* CBitBuffer::GetDebugName() const
|
||||
{
|
||||
return m_pDebugName;
|
||||
}
|
||||
|
||||
bool CBitBuffer::IsOverflowed()
|
||||
bool CBitBuffer::IsOverflowed() const
|
||||
{
|
||||
return m_bOverflow;
|
||||
}
|
||||
|
@ -20,8 +20,8 @@ class CBitBuffer
|
||||
public:
|
||||
CBitBuffer(void);
|
||||
void SetDebugName(const char* pName);
|
||||
const char* GetDebugName();
|
||||
bool IsOverflowed();
|
||||
const char* GetDebugName() const;
|
||||
bool IsOverflowed() const;
|
||||
void SetOverflowFlag();
|
||||
|
||||
////////////////////////////////////
|
||||
|
Loading…
x
Reference in New Issue
Block a user