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:
@@ -795,9 +795,11 @@ struct wxPrintfConvSpecParser
|
|||||||
typedef wxPrintfConvSpec<CharType> ConvSpec;
|
typedef wxPrintfConvSpec<CharType> ConvSpec;
|
||||||
|
|
||||||
wxPrintfConvSpecParser(const CharType *fmt)
|
wxPrintfConvSpecParser(const CharType *fmt)
|
||||||
: posarg_present(false), nonposarg_present(false),
|
|
||||||
nargs(0)
|
|
||||||
{
|
{
|
||||||
|
nargs = 0;
|
||||||
|
posarg_present =
|
||||||
|
nonposarg_present = false;
|
||||||
|
|
||||||
memset(pspec, 0, sizeof(pspec));
|
memset(pspec, 0, sizeof(pspec));
|
||||||
|
|
||||||
// parse the format string
|
// parse the format string
|
||||||
|
Reference in New Issue
Block a user