summaryrefslogtreecommitdiffstats
path: root/Source/cmTryCompileCommand.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-23 17:32:14 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-23 17:32:14 (GMT)
commit48fe81acdd94ace2a03e76c6d55eba9993571964 (patch)
tree079da02c531c82b5fce4f49bd29714881b755314 /Source/cmTryCompileCommand.cxx
parent5843ae455e86be59425910f510d211a9cf8a2eeb (diff)
downloadCMake-48fe81acdd94ace2a03e76c6d55eba9993571964.zip
CMake-48fe81acdd94ace2a03e76c6d55eba9993571964.tar.gz
CMake-48fe81acdd94ace2a03e76c6d55eba9993571964.tar.bz2
Try to remove some warnings
Diffstat (limited to 'Source/cmTryCompileCommand.cxx')
-rw-r--r--Source/cmTryCompileCommand.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmTryCompileCommand.cxx b/Source/cmTryCompileCommand.cxx
index cc949d1..fa90957 100644
--- a/Source/cmTryCompileCommand.cxx
+++ b/Source/cmTryCompileCommand.cxx
@@ -206,13 +206,16 @@ bool cmTryCompileCommand::InitialPass(std::vector<std::string> const& argv)
return true;
}
-
+
+static void cmTryCompileCommandNotUsed(bool){}
+
void cmTryCompileCommand::CleanupFiles(const char* binDir, bool recursive)
{
if ( !binDir )
{
return;
}
+ cmTryCompileCommandNotUsed(recursive);
#ifdef WIN32
if ( recursive )
{