summaryrefslogtreecommitdiffstats
path: root/Source/cmUnixMakefileGenerator.cxx
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2001-11-30 22:20:43 (GMT)
committerSebastien Barre <sebastien.barre@kitware.com>2001-11-30 22:20:43 (GMT)
commitb180bf609b546ba56e44dffe461bd8c95d7c10d7 (patch)
treef6ee8065ad0de871cc077095d44bdc5aca68fdb6 /Source/cmUnixMakefileGenerator.cxx
parentab46fd164ac4713f957533ee2016eab2e3d6eb80 (diff)
downloadCMake-b180bf609b546ba56e44dffe461bd8c95d7c10d7.zip
CMake-b180bf609b546ba56e44dffe461bd8c95d7c10d7.tar.gz
CMake-b180bf609b546ba56e44dffe461bd8c95d7c10d7.tar.bz2
fix warning for Borland build
Diffstat (limited to 'Source/cmUnixMakefileGenerator.cxx')
-rw-r--r--Source/cmUnixMakefileGenerator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx
index 441ed13..8aafc92 100644
--- a/Source/cmUnixMakefileGenerator.cxx
+++ b/Source/cmUnixMakefileGenerator.cxx
@@ -286,7 +286,7 @@ void cmUnixMakefileGenerator::OutputIncludeMakefile(std::ostream& fout,
std::string
-cmUnixMakefileGenerator::GetOutputExtension(const char* sourceExtension)
+cmUnixMakefileGenerator::GetOutputExtension(const char*)
{
return m_ObjectFileExtension;
}
@@ -601,7 +601,7 @@ void cmUnixMakefileGenerator::OutputModuleLibraryRule(std::ostream& fout,
void cmUnixMakefileGenerator::OutputStaticLibraryRule(std::ostream& fout,
const char* name,
- const cmTarget & t)
+ const cmTarget &)
{
std::string target = m_LibraryOutputPath + "lib" + std::string(name) + ".a";
std::string depend = "$(";
@@ -628,7 +628,7 @@ void cmUnixMakefileGenerator::OutputStaticLibraryRule(std::ostream& fout,
void cmUnixMakefileGenerator::OutputExecutableRule(std::ostream& fout,
const char* name,
- const cmTarget & t)
+ const cmTarget &t)
{
std::string target = m_ExecutableOutputPath + name;
std::string depend = "$(";