From: Vadim Zeitlin Date: Tue, 5 Feb 2013 20:46:18 +0000 (+0000) Subject: No changes, just remove unused part of expression. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/25aa4f927a1ab6d7392cb1d2048ef7aa50bbca27 No changes, just remove unused part of expression. We don't do anything with the result of inserting the watch in fswatchercmn.cpp. Closes #15027. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73464 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/fswatchercmn.cpp b/src/common/fswatchercmn.cpp index 2990795fb6..ce36aa2783 100644 --- a/src/common/fswatchercmn.cpp +++ b/src/common/fswatchercmn.cpp @@ -130,7 +130,7 @@ wxFileSystemWatcherBase::AddAny(const wxFileName& path, if ( it == m_watches.end() ) { wxFSWatchInfoMap::value_type val(canonical, watch); - m_watches.insert(val).second; + m_watches.insert(val); } else {