mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-05-17 11:30:13 +02:00
More missing constructor initializers found by Coverity.
This commit is contained in:
parent
2ba3bc3252
commit
c9f91dd929
@ -1,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2011 Baptiste Lepilleur
|
||||||
// Distributed under MIT license, or public domain if desired and
|
// Distributed under MIT license, or public domain if desired and
|
||||||
// recognized in your jurisdiction.
|
// recognized in your jurisdiction.
|
||||||
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
||||||
@ -278,6 +278,7 @@ FastWriter::writeValue( const Value &value )
|
|||||||
StyledWriter::StyledWriter()
|
StyledWriter::StyledWriter()
|
||||||
: rightMargin_( 74 )
|
: rightMargin_( 74 )
|
||||||
, indentSize_( 3 )
|
, indentSize_( 3 )
|
||||||
|
, addChildValues_()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -554,6 +555,7 @@ StyledStreamWriter::StyledStreamWriter( std::string indentation )
|
|||||||
: document_(NULL)
|
: document_(NULL)
|
||||||
, rightMargin_( 74 )
|
, rightMargin_( 74 )
|
||||||
, indentation_( indentation )
|
, indentation_( indentation )
|
||||||
|
, addChildValues_()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user