diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-27 22:23:30 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-31 00:19:48 (GMT) |
commit | a19ec77200ccd2157d936bec6472329464937b67 (patch) | |
tree | 45a297211f9d5479f5f71074ec0a66ee5bc6bff2 /Source/CPack/WiX | |
parent | 3d03629f20977bd137765e1d03ebbd53a349553c (diff) | |
download | CMake-a19ec77200ccd2157d936bec6472329464937b67.zip CMake-a19ec77200ccd2157d936bec6472329464937b67.tar.gz CMake-a19ec77200ccd2157d936bec6472329464937b67.tar.bz2 |
clang-tidy: fix `readability-static-accessed-through-instance` lints
Diffstat (limited to 'Source/CPack/WiX')
-rw-r--r-- | Source/CPack/WiX/cmWIXSourceWriter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/WiX/cmWIXSourceWriter.cxx b/Source/CPack/WiX/cmWIXSourceWriter.cxx index 54fa011..82dc019 100644 --- a/Source/CPack/WiX/cmWIXSourceWriter.cxx +++ b/Source/CPack/WiX/cmWIXSourceWriter.cxx @@ -97,7 +97,7 @@ void cmWIXSourceWriter::AddTextNode(std::string const& text) return; } - File << this->EscapeAttributeValue(text); + File << cmWIXSourceWriter::EscapeAttributeValue(text); State = DEFAULT; } |