clang-tidy: use raw string literals

Found with modernize-raw-string-literals

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2021-02-28 18:10:02 -08:00
committed by Tomas Babej
parent cdbab698e3
commit 04454a995f
5 changed files with 27 additions and 27 deletions

View File

@@ -1010,9 +1010,9 @@ std::string Task::composeJSON (bool decorate /*= false*/) const
out << ',';
Datetime d (i.first.substr (11));
out << "{\"entry\":\""
out << R"({"entry":")"
<< d.toISO ()
<< "\",\"description\":\""
<< R"(","description":")"
<< json::encode (i.second)
<< "\"}";