summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio10Generator.cxx
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2022-11-22 18:53:54 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2022-11-29 17:39:29 (GMT)
commit64c0702f91fb1e9ff8f6afd55d8fc79003426d6b (patch)
tree0d8c59ebed13c719e2c2e7eef33f5b3147ab3bd3 /Source/cmGlobalVisualStudio10Generator.cxx
parent1b929ba8e41b49ab9c30c095bf9585b3ab85656b (diff)
downloadCMake-64c0702f91fb1e9ff8f6afd55d8fc79003426d6b.zip
CMake-64c0702f91fb1e9ff8f6afd55d8fc79003426d6b.tar.gz
CMake-64c0702f91fb1e9ff8f6afd55d8fc79003426d6b.tar.bz2
clang-tidy: fix `readability-static-accessed-through-instance` lints
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio10Generator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.cxx b/Source/cmGlobalVisualStudio10Generator.cxx
index 266e08d..8687a59 100644
--- a/Source/cmGlobalVisualStudio10Generator.cxx
+++ b/Source/cmGlobalVisualStudio10Generator.cxx
@@ -501,7 +501,8 @@ bool cmGlobalVisualStudio10Generator::InitializeWindowsStore(cmMakefile* mf)
bool cmGlobalVisualStudio10Generator::InitializeTegraAndroid(cmMakefile* mf)
{
- std::string v = this->GetInstalledNsightTegraVersion();
+ std::string v =
+ cmGlobalVisualStudio10Generator::GetInstalledNsightTegraVersion();
if (v.empty()) {
mf->IssueMessage(MessageType::FATAL_ERROR,
"CMAKE_SYSTEM_NAME is 'Android' but "