diff options
Diffstat (limited to 'Source/cmTryCompileCommand.cxx')
-rw-r--r-- | Source/cmTryCompileCommand.cxx | 5 |
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 ) { |