Fix coverity warning

This commit is contained in:
Guillaume MM 2017-05-25 16:40:41 +02:00
parent d547ef7c5e
commit 6d6a4d7e75

View File

@ -39,12 +39,12 @@ namespace lyx {
InsetRef::InsetRef(Buffer * buf, InsetCommandParams const & p)
: InsetCommand(buf, p)
: InsetCommand(buf, p), broken_(false)
{}
InsetRef::InsetRef(InsetRef const & ir)
: InsetCommand(ir)
: InsetCommand(ir), broken_(false)
{}