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/cmGlobalVisualStudio10Generator.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/cmGlobalVisualStudio10Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio10Generator.cxx | 3 |
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 " |