1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-16 22:37:30 +08:00

clang-tidy: fix readability-static-accessed-through-instance lints

This commit is contained in:
Ben Boeckel
2023-07-27 18:23:30 -04:00
parent 3d03629f20
commit a19ec77200

View File

@@ -97,7 +97,7 @@ void cmWIXSourceWriter::AddTextNode(std::string const& text)
return;
}
File << this->EscapeAttributeValue(text);
File << cmWIXSourceWriter::EscapeAttributeValue(text);
State = DEFAULT;
}