diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-10-21 18:55:29 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-10-21 18:55:29 (GMT) |
commit | 560b7af06eca01e8bcc7db77980845378548ddb5 (patch) | |
tree | 43aa94d7fce190404ffcd0d71ac6d8c419ef2e8b /Source/cmLocalGenerator.cxx | |
parent | 7cef36c628a8ef07a0c53ea08691e4e6b949a695 (diff) | |
download | CMake-560b7af06eca01e8bcc7db77980845378548ddb5.zip CMake-560b7af06eca01e8bcc7db77980845378548ddb5.tar.gz CMake-560b7af06eca01e8bcc7db77980845378548ddb5.tar.bz2 |
COMP: fix warning
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index e91f579..80ffd1c 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -457,7 +457,7 @@ std::string cmLocalGenerator::ConvertToRelativeOutputPath(const char* p) void cmLocalGenerator::AddCustomCommandToCreateObject(const char* ofname, const char* lang, cmSourceFile& source, - cmTarget& target) + cmTarget& ) { std::string objectFile = this->ConvertToRelativeOutputPath(ofname); std::string sourceFile = this->ConvertToRelativeOutputPath(source.GetFullPath().c_str()); |