summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2003-06-03 18:55:20 (GMT)
committerKen Martin <ken.martin@kitware.com>2003-06-03 18:55:20 (GMT)
commit0b3b21fa63ed137a3fa534c379b2995583c40e24 (patch)
tree61705c05b2650de91dadbb6a67cc93574ef71d5c /Source/cmLocalUnixMakefileGenerator.cxx
parent12d99416c194f3c8d1f2f321213506514d0616c8 (diff)
downloadCMake-0b3b21fa63ed137a3fa534c379b2995583c40e24.zip
CMake-0b3b21fa63ed137a3fa534c379b2995583c40e24.tar.gz
CMake-0b3b21fa63ed137a3fa534c379b2995583c40e24.tar.bz2
warning fixes
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx
index 7b25c72..33d5572 100644
--- a/Source/cmLocalUnixMakefileGenerator.cxx
+++ b/Source/cmLocalUnixMakefileGenerator.cxx
@@ -679,7 +679,7 @@ void cmLocalUnixMakefileGenerator::OutputLinkLibraries(std::ostream& fout,
}
std::string cmLocalUnixMakefileGenerator::CreatePreBuildRules(
- const cmTarget &target, const char* targetName)
+ const cmTarget &target, const char* /* targetName */)
{
std::string customRuleCode = "";
bool initNext = false;
@@ -704,7 +704,7 @@ std::string cmLocalUnixMakefileGenerator::CreatePreBuildRules(
}
std::string cmLocalUnixMakefileGenerator::CreatePreLinkRules(
- const cmTarget &target, const char* targetName)
+ const cmTarget &target, const char* /* targetName */)
{
std::string customRuleCode = "";
bool initNext = false;
@@ -729,7 +729,7 @@ std::string cmLocalUnixMakefileGenerator::CreatePreLinkRules(
}
std::string cmLocalUnixMakefileGenerator::CreatePostBuildRules(
- const cmTarget &target, const char* targetName)
+ const cmTarget &target, const char* /* targetName */)
{
std::string customRuleCode = "";
bool initNext = false;