Avoid -Wsign-compare warning
This commit is contained in:
parent
8a81391cf4
commit
83f1df7b6b
@ -459,7 +459,7 @@ void wxFsEventsFileSystemWatcher::PostChange(const wxFileName& oldFileName,
|
||||
wxFSW_EVENT_ATTRIB
|
||||
};
|
||||
|
||||
for ( int i = 0; i < WXSIZEOF(allEvents); i++ )
|
||||
for ( unsigned i = 0; i < WXSIZEOF(allEvents); i++ )
|
||||
{
|
||||
if ( event & allEvents[i] )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user