diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-22 18:53:54 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-29 17:39:29 (GMT) |
commit | 64c0702f91fb1e9ff8f6afd55d8fc79003426d6b (patch) | |
tree | 0d8c59ebed13c719e2c2e7eef33f5b3147ab3bd3 /Source/cmGlobalVisualStudio71Generator.cxx | |
parent | 1b929ba8e41b49ab9c30c095bf9585b3ab85656b (diff) | |
download | CMake-64c0702f91fb1e9ff8f6afd55d8fc79003426d6b.zip CMake-64c0702f91fb1e9ff8f6afd55d8fc79003426d6b.tar.gz CMake-64c0702f91fb1e9ff8f6afd55d8fc79003426d6b.tar.bz2 |
clang-tidy: fix `readability-static-accessed-through-instance` lints
Diffstat (limited to 'Source/cmGlobalVisualStudio71Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio71Generator.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx index 758ce83..86d4785 100644 --- a/Source/cmGlobalVisualStudio71Generator.cxx +++ b/Source/cmGlobalVisualStudio71Generator.cxx @@ -169,7 +169,9 @@ void cmGlobalVisualStudio71Generator::WriteExternalProject( { fout << "Project(\"{" << (typeGuid ? typeGuid - : std::string(this->ExternalProjectType(location))) + : std::string( + cmGlobalVisualStudio71Generator::ExternalProjectType( + location))) << "}\") = \"" << name << "\", \"" << this->ConvertToSolutionPath(location) << "\", \"{" << this->GetGUID(name) << "}\"\n"; |