CLOUD: Fix Unsigned vs. Signed Comparison Compiler Warning.
This commit is contained in:
parent
d64ea85de6
commit
20e04ad234
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ class LocalWebserver : public Common::Singleton<LocalWebserver> {
|
||||||
SDLNet_SocketSet _set;
|
SDLNet_SocketSet _set;
|
||||||
TCPsocket _serverSocket;
|
TCPsocket _serverSocket;
|
||||||
Client _client[MAX_CONNECTIONS];
|
Client _client[MAX_CONNECTIONS];
|
||||||
int _clients;
|
uint32 _clients;
|
||||||
bool _timerStarted, _stopOnIdle, _minimalMode;
|
bool _timerStarted, _stopOnIdle, _minimalMode;
|
||||||
Common::HashMap<Common::String, BaseHandler*> _pathHandlers;
|
Common::HashMap<Common::String, BaseHandler*> _pathHandlers;
|
||||||
BaseHandler *_defaultHandler;
|
BaseHandler *_defaultHandler;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue