Skip to content

Commit

Permalink
fixed some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
oy committed Oct 14, 2018
1 parent c7e1a2d commit ca2210d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/engine/server/server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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++;
Expand All @@ -52,7 +52,7 @@ static void StrRtrim(char *pStr)
pStr[i] = 0;
i--;
}
}
}*/


CSnapIDPool::CSnapIDPool()
Expand Down
4 changes: 2 additions & 2 deletions src/game/client/components/menus.h
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@ class CMenus : public CComponent
{
bool m_ClanFriend;
bool m_FakeFriend;
int m_NameHash;
int m_ClanHash;
unsigned m_NameHash;
unsigned m_ClanHash;
};

enum
Expand Down

0 comments on commit ca2210d

Please sign in to comment.