Avoid -Wsign-compare warning

This commit is contained in:
Paul Cornett 2020-07-20 12:17:21 -07:00
parent 8a81391cf4
commit 83f1df7b6b

View File

@ -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] )
{