fix g++ warnings about initialization order mismatch after the last change
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60121 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
75ac34cefc
commit
f20e268907
@ -795,9 +795,11 @@ struct wxPrintfConvSpecParser
|
||||
typedef wxPrintfConvSpec<CharType> ConvSpec;
|
||||
|
||||
wxPrintfConvSpecParser(const CharType *fmt)
|
||||
: posarg_present(false), nonposarg_present(false),
|
||||
nargs(0)
|
||||
{
|
||||
nargs = 0;
|
||||
posarg_present =
|
||||
nonposarg_present = false;
|
||||
|
||||
memset(pspec, 0, sizeof(pspec));
|
||||
|
||||
// parse the format string
|
||||
|
Loading…
Reference in New Issue
Block a user