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:
@@ -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
|
||||
|
Reference in New Issue
Block a user