summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorArtur Ryt <artur.ryt@gmail.com>2019-04-02 17:59:00 (GMT)
committerArtur Ryt <artur.ryt@gmail.com>2019-04-02 17:59:54 (GMT)
commit30bb14c65777bad02b3360797bf9c7b0fbe3280e (patch)
treea6778b486afbc57cfd84bef062ccf87969323a5c /Source/cmGlobalUnixMakefileGenerator3.cxx
parent56ae290284a7f6f7298bf7410a361aaecb7ebbe9 (diff)
downloadCMake-30bb14c65777bad02b3360797bf9c7b0fbe3280e.zip
CMake-30bb14c65777bad02b3360797bf9c7b0fbe3280e.tar.gz
CMake-30bb14c65777bad02b3360797bf9c7b0fbe3280e.tar.bz2
Modernize: Enable modernize-raw-string-literal in clang-tidy
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx
index 9d64924..65d816e 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.cxx
+++ b/Source/cmGlobalUnixMakefileGenerator3.cxx
@@ -177,13 +177,13 @@ void cmGlobalUnixMakefileGenerator3::AddCXXCompileCommand(
*this->CommandDatabase << "," << std::endl;
}
*this->CommandDatabase << "{" << std::endl
- << " \"directory\": \""
+ << R"( "directory": ")"
<< cmGlobalGenerator::EscapeJSON(workingDirectory)
<< "\"," << std::endl
- << " \"command\": \""
+ << R"( "command": ")"
<< cmGlobalGenerator::EscapeJSON(compileCommand)
<< "\"," << std::endl
- << " \"file\": \""
+ << R"( "file": ")"
<< cmGlobalGenerator::EscapeJSON(sourceFile) << "\""
<< std::endl
<< "}";