diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-22 19:42:31 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-29 17:39:45 (GMT) |
commit | 362d6cd234dd8e83577bb72dcbe22949aa9253bf (patch) | |
tree | 0e1e97296748e6c755513e342e6937fe719cceee /Source/cmGlobalVisualStudio9Generator.cxx | |
parent | d64adb9267213c0031b376633b70707ddcfc9ba6 (diff) | |
download | CMake-362d6cd234dd8e83577bb72dcbe22949aa9253bf.zip CMake-362d6cd234dd8e83577bb72dcbe22949aa9253bf.tar.gz CMake-362d6cd234dd8e83577bb72dcbe22949aa9253bf.tar.bz2 |
clang-tidy: fix `modernize-raw-string-literal` lints
Diffstat (limited to 'Source/cmGlobalVisualStudio9Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio9Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio9Generator.cxx b/Source/cmGlobalVisualStudio9Generator.cxx index cd0b114..9f6550b 100644 --- a/Source/cmGlobalVisualStudio9Generator.cxx +++ b/Source/cmGlobalVisualStudio9Generator.cxx @@ -158,5 +158,5 @@ std::string cmGlobalVisualStudio9Generator::GetUserMacrosDirectory() std::string cmGlobalVisualStudio9Generator::GetUserMacrosRegKeyBase() { - return "Software\\Microsoft\\VisualStudio\\9.0\\vsmacros"; + return R"(Software\Microsoft\VisualStudio\9.0\vsmacros)"; } |