mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
7450d24eec
commit
aab1b145a5
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user