uninitialized variable

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34743 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2010-07-02 11:04:36 +00:00
parent 2bb7b6d4ea
commit 62d537b5da

View File

@ -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)