diff options
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index cea20ad..0fc8fa3 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1824,7 +1824,7 @@ void cmMakefile::AddSubDirectory(const std::string& srcPath, auto subMfu = cm::make_unique<cmMakefile>(this->GlobalGenerator, newSnapshot); - auto subMf = subMfu.get(); + auto* subMf = subMfu.get(); this->GetGlobalGenerator()->AddMakefile(std::move(subMfu)); if (excludeFromAll) { @@ -3370,7 +3370,7 @@ cmSourceFile* cmMakefile::GetSource(const std::string& sourceName, #endif auto sfsi = this->SourceFileSearchIndex.find(name); if (sfsi != this->SourceFileSearchIndex.end()) { - for (auto sf : sfsi->second) { + for (auto* sf : sfsi->second) { if (sf->Matches(sfl)) { return sf; } |