diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-08-20 20:59:06 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-08-20 20:59:06 (GMT) |
commit | 7db8c86ac90e48aa4a36ba67dd2635646820b62f (patch) | |
tree | 5b65421fc8cefc6441e2c1f3dfe9c3b0f08af9cf /Source/cmFindLibraryCommand.cxx | |
parent | b867a85213afa0c22eaad21f3589465761d2bca3 (diff) | |
download | CMake-7db8c86ac90e48aa4a36ba67dd2635646820b62f.zip CMake-7db8c86ac90e48aa4a36ba67dd2635646820b62f.tar.gz CMake-7db8c86ac90e48aa4a36ba67dd2635646820b62f.tar.bz2 |
STYLE: add some newlines to cmake_install.cmake, so it's easier to read
-move the array behind the if, it's unused before it
Alex
Diffstat (limited to 'Source/cmFindLibraryCommand.cxx')
-rw-r--r-- | Source/cmFindLibraryCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFindLibraryCommand.cxx b/Source/cmFindLibraryCommand.cxx index 5fcf089..157eb3f 100644 --- a/Source/cmFindLibraryCommand.cxx +++ b/Source/cmFindLibraryCommand.cxx @@ -108,11 +108,11 @@ void cmFindLibraryCommand::AddLib64Paths() std::string voidsize = this->Makefile->GetRequiredDefinition("CMAKE_SIZEOF_VOID_P"); int size = atoi(voidsize.c_str()); - std::vector<std::string> path64; if(size != 8) { return; } + std::vector<std::string> path64; bool found64 = false; for(std::vector<std::string>::iterator i = this->SearchPaths.begin(); i != this->SearchPaths.end(); ++i) |