Avoid pointless bitwise operation on a bool

This commit is contained in:
Paul Cornett
2019-02-17 22:28:44 -08:00
parent 66f88e401e
commit 36f742e2e7

View File

@@ -420,7 +420,7 @@ bool wxFsEventsFileSystemWatcher::RemoveAll()
FSEventStreamInvalidate(it->second); FSEventStreamInvalidate(it->second);
FSEventStreamRelease(it->second); FSEventStreamRelease(it->second);
++it; ++it;
ret |= true; ret = true;
} }
m_streams.clear(); m_streams.clear();
return ret; return ret;