mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-19 14:38:18 +00:00
fixed some warnings
This commit is contained in:
parent
c7e1a2df84
commit
ca2210d0b8
|
@ -35,7 +35,7 @@
|
|||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
static const char *StrLtrim(const char *pStr)
|
||||
/*static const char *StrLtrim(const char *pStr)
|
||||
{
|
||||
while(*pStr && *pStr >= 0 && *pStr <= 32)
|
||||
pStr++;
|
||||
|
@ -52,7 +52,7 @@ static void StrRtrim(char *pStr)
|
|||
pStr[i] = 0;
|
||||
i--;
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
|
||||
CSnapIDPool::CSnapIDPool()
|
||||
|
|
|
@ -313,8 +313,8 @@ private:
|
|||
{
|
||||
bool m_ClanFriend;
|
||||
bool m_FakeFriend;
|
||||
int m_NameHash;
|
||||
int m_ClanHash;
|
||||
unsigned m_NameHash;
|
||||
unsigned m_ClanHash;
|
||||
};
|
||||
|
||||
enum
|
||||
|
|
Loading…
Reference in a new issue