diff options
| author | dobrokot <[email protected]> | 2022-02-10 16:49:07 +0300 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:07 +0300 |
| commit | 8d57b69dee81198a59c39e64704f7dc9f04b4fbf (patch) | |
| tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/html/pcdata/pcdata.cpp | |
| parent | 25d83bf841d8b3ce3886525078f1964ac3c293c5 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/html/pcdata/pcdata.cpp')
| -rw-r--r-- | library/cpp/html/pcdata/pcdata.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/html/pcdata/pcdata.cpp b/library/cpp/html/pcdata/pcdata.cpp index 3a8ded72d4d..740c240fd23 100644 --- a/library/cpp/html/pcdata/pcdata.cpp +++ b/library/cpp/html/pcdata/pcdata.cpp @@ -47,15 +47,15 @@ static void EncodeHtmlPcdataAppendInternal(const TStringBuf str, TString& strout break; } } -} +} void EncodeHtmlPcdataAppend(const TStringBuf str, TString& strout) { - EncodeHtmlPcdataAppendInternal(str, strout, true); -} - + EncodeHtmlPcdataAppendInternal(str, strout, true); +} + TString EncodeHtmlPcdata(const TStringBuf str, bool qAmp) { TString strout; - EncodeHtmlPcdataAppendInternal(str, strout, qAmp); + EncodeHtmlPcdataAppendInternal(str, strout, qAmp); return strout; } |
