mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-05 06:08:41 -06:00
Fix Xcode 6.1.1 compilation issue
This commit is contained in:
@@ -342,10 +342,7 @@ void cmRuntimeDependencyArchive::AddResolvedPath(const std::string& name,
|
||||
const std::string& path,
|
||||
bool& unique)
|
||||
{
|
||||
auto it =
|
||||
this->ResolvedPaths
|
||||
.insert(std::pair<std::string, std::set<std::string>>{ name, {} })
|
||||
.first;
|
||||
auto it = this->ResolvedPaths.emplace(name, std::set<std::string>{}).first;
|
||||
unique = true;
|
||||
for (auto const& other : it->second) {
|
||||
if (cmSystemTools::SameFile(path, other)) {
|
||||
|
||||
Reference in New Issue
Block a user