From 6d6a4d7e75be0207469fe838aaf17ecb363b7139 Mon Sep 17 00:00:00 2001 From: Guillaume MM Date: Thu, 25 May 2017 16:40:41 +0200 Subject: [PATCH] Fix coverity warning --- src/insets/InsetRef.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/insets/InsetRef.cpp b/src/insets/InsetRef.cpp index 7c5442cbe9..65c9c3a071 100644 --- a/src/insets/InsetRef.cpp +++ b/src/insets/InsetRef.cpp @@ -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) {} -- 2.39.2