add comments

This commit is contained in:
Siarhei Fedartsou 2022-09-30 17:28:50 +02:00
parent ca7e560fd4
commit 05c6008995

View File

@ -136,6 +136,7 @@ template <> void Renderer<std::vector<char>>::write(const char *str)
{
out.insert(out.end(), str, str + strlen(str));
}
template <> void Renderer<std::vector<char>>::write(char ch) { out.push_back(ch); }
template <> void Renderer<std::ostream>::write(const std::string &str) { out << str; }