From a19ec77200ccd2157d936bec6472329464937b67 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 27 Jul 2023 18:23:30 -0400 Subject: clang-tidy: fix `readability-static-accessed-through-instance` lints --- Source/CPack/WiX/cmWIXSourceWriter.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v0.12