diff options
author | Craig Scott <craig.scott@crascit.com> | 2021-02-03 23:02:36 +1100 |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2021-02-03 23:10:08 +1100 |
commit | df08f8df3027db25eb1cb75fb6017c3a8c046674 (patch) | |
tree | 51ed49fa8412c6cb056e26fd3cf868e61170fed4 /Source | |
parent | 375b307bae4513b69b9f86549a094da7f2e8b3a7 (diff) | |
download | cmake-df08f8df3027db25eb1cb75fb6017c3a8c046674.tar.gz |
cmComputeLinkInformation: Fix misspelt private variable name
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmComputeLinkInformation.cxx | 6 | ||||
-rw-r--r-- | Source/cmComputeLinkInformation.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmComputeLinkInformation.cxx b/Source/cmComputeLinkInformation.cxx index 6e1fac0f11..d1680ad220 100644 --- a/Source/cmComputeLinkInformation.cxx +++ b/Source/cmComputeLinkInformation.cxx @@ -1336,8 +1336,8 @@ void cmComputeLinkInformation::ComputeFrameworkInfo() "CMAKE_", this->LinkLanguage, "_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES"); this->Makefile->GetDefExpandList(implicitDirVar, implicitDirVec); - this->FrameworkPathsEmmitted.insert(implicitDirVec.begin(), - implicitDirVec.end()); + this->FrameworkPathsEmitted.insert(implicitDirVec.begin(), + implicitDirVec.end()); // Regular expression to extract a framework path and name. this->SplitFramework.compile("(.*)/(.*)\\.framework$"); @@ -1345,7 +1345,7 @@ void cmComputeLinkInformation::ComputeFrameworkInfo() void cmComputeLinkInformation::AddFrameworkPath(std::string const& p) { - if (this->FrameworkPathsEmmitted.insert(p).second) { + if (this->FrameworkPathsEmitted.insert(p).second) { this->FrameworkPaths.push_back(p); } } diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index ec8d73c4ac..d8ec5635d7 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -164,7 +164,7 @@ private: // Framework info. void ComputeFrameworkInfo(); void AddFrameworkPath(std::string const& p); - std::set<std::string> FrameworkPathsEmmitted; + std::set<std::string> FrameworkPathsEmitted; cmsys::RegularExpression SplitFramework; // Linker search path computation. |