Fix missing xhtml output found by cppcheck

Actually I don't know if this operator is used at all, but if it exists then
it must output something.
This commit is contained in:
Georg Baum 2015-09-20 20:47:33 +02:00
parent 7450d24eec
commit aab1b145a5

View File

@ -495,7 +495,7 @@ XHTMLStream & XHTMLStream::operator<<(char_type c)
XHTMLStream & XHTMLStream::operator<<(char c)
{
clearTagDeque();
string const d = html::escapeChar(c, escape_);
os_ << html::escapeChar(c, escape_);
escape_ = ESCAPE_ALL;
return *this;
}