diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-11-29 22:10:29 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-11-29 22:10:29 (GMT) |
commit | 2915f24274abbea64b7f9806d787912a125f97d8 (patch) | |
tree | 6c2d50fccb9b85bf92e408f328e3314d8b574021 /Source/cmMakefile.cxx | |
parent | f211823b5579be5aaf8f62dae870ad370326158f (diff) | |
download | CMake-2915f24274abbea64b7f9806d787912a125f97d8.zip CMake-2915f24274abbea64b7f9806d787912a125f97d8.tar.gz CMake-2915f24274abbea64b7f9806d787912a125f97d8.tar.bz2 |
COMP: fix compile issue on Sun hopefully
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index d230add..411dd25 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -894,7 +894,7 @@ void cmMakefile::RemoveDefineFlag(const char* flag) void cmMakefile::AddLinkLibrary(const char* lib, cmTarget::LinkLibraryType llt) { - std::pair<std::string, cmTarget::LinkLibraryType> tmp; + cmTarget::LibraryID tmp; tmp.first = lib; tmp.second = llt; this->LinkLibraries.push_back(tmp); |