Fix uninitialized variable warning in wxMSW wxFileSystemWatcher code.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 7 Jul 2012 13:27:51 +0000 (13:27 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 7 Jul 2012 13:27:51 +0000 (13:27 +0000)
commitff534ba469473a9ace193e736ca131144df307f9
tree6a62c8e9bd5999c4e093a351006f0a21da29ab0f
parent9d261cbb55f64d4041d1a7e44b39e2d63082a218
Fix uninitialized variable warning in wxMSW wxFileSystemWatcher code.

This warning was harmless as the variable was in fact always initialized if
the code where it was used was reached but g++ 4.6.1 is not smart enough to
see it, just as MSVC for which we already had a workaround. So initialize it
explicitly just to suppress the warning.

See #14459.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71976 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
src/msw/fswatcher.cpp