mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-27 00:57:19 +02:00
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:
parent
cdbab698e3
commit
04454a995f
5 changed files with 27 additions and 27 deletions
|
@ -992,7 +992,7 @@ void TDB2::revert_backlog (
|
|||
const std::string& current,
|
||||
const std::string& prior)
|
||||
{
|
||||
std::string uuid_att = "\"uuid\":\"" + uuid + '"';
|
||||
std::string uuid_att = R"("uuid":")" + uuid + '"';
|
||||
|
||||
bool found = false;
|
||||
for (auto task = b.rbegin (); task != b.rend (); ++task)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue