From 62d537b5da3fb7d5b2f61075208a7f1c589fe349 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Fri, 2 Jul 2010 11:04:36 +0000 Subject: [PATCH] uninitialized variable git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34743 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/output_xhtml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output_xhtml.h b/src/output_xhtml.h index 0e69424426..874cc9903e 100644 --- a/src/output_xhtml.h +++ b/src/output_xhtml.h @@ -32,7 +32,7 @@ namespace html { /// be escaped before being passed to the constructor. struct StartTag { /// - explicit StartTag(std::string const & tag) : tag_(tag) {} + explicit StartTag(std::string const & tag) : tag_(tag), keepempty_(false) {} /// explicit StartTag(std::string const & tag, std::string const & attr, bool keepempty = false)