suppress harmless warning about possibly uninitialized variable in ParseRfc822Date() in OSX build

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61304 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-07-03 12:14:51 +00:00
parent c2f7cc71ef
commit 5ec58699d0

View File

@@ -811,7 +811,7 @@ wxDateTime::ParseRfc822Date(const wxString& date, wxString::const_iterator *end)
return false;
// 7. now the interesting part: the timezone
int offset wxDUMMY_INITIALIZE(0);
int offset = 0; // just to suppress warnings
if ( *p == '-' || *p == '+' )
{
// the explicit offset given: it has the form of hhmm