diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-12-08 14:27:52 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-12-08 14:27:52 (GMT) |
commit | 1dd5db023592c3c5488adb67dfba433ab5b399af (patch) | |
tree | c05958a07745af7313e7214d672ae9f986fe9bba /Source/cmTarget.cxx | |
parent | 5ccd5a4a5b90d2af569a750016bef8e8f5e8ca40 (diff) | |
download | CMake-1dd5db023592c3c5488adb67dfba433ab5b399af.zip CMake-1dd5db023592c3c5488adb67dfba433ab5b399af.tar.gz CMake-1dd5db023592c3c5488adb67dfba433ab5b399af.tar.bz2 |
COMP: fix some warnings and style issues
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 857cdba..31cd078 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -481,7 +481,8 @@ void cmTarget::TraceVSDependencies(std::string projFile, tLocation = cmSystemTools::GetFilenamePath(tLocation); std::string depLocation = cmSystemTools::GetFilenamePath( std::string(fullName)); - depLocation = cmSystemTools::CollapseFullPath(depLocation.c_str()); + depLocation = + cmSystemTools::CollapseFullPath(depLocation.c_str()); tLocation = cmSystemTools::CollapseFullPath(tLocation.c_str()); if(depLocation == tLocation) { |