diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-07-17 17:10:17 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-07-17 17:10:17 (GMT) |
commit | 11742beb1bc44c7694113ef1196cb994cd488901 (patch) | |
tree | 412370af4e5854f49dc473c485a3749257799b44 | |
parent | b56815a4e92dd976e9e17fa8ecb4061ecb72b6fe (diff) | |
download | CMake-11742beb1bc44c7694113ef1196cb994cd488901.zip CMake-11742beb1bc44c7694113ef1196cb994cd488901.tar.gz CMake-11742beb1bc44c7694113ef1196cb994cd488901.tar.bz2 |
COMP: fix warning about unused variable
Alex
-rw-r--r-- | Source/cmakemain.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index c089ed6..b7bac99 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -215,8 +215,8 @@ static std::string cmakemainGetStack(void *clientdata) return msg; } -static void cmakemainErrorCallback(const char* m, const char* title, - bool& nomore, void *clientdata) +static void cmakemainErrorCallback(const char* m, const char*, bool&, + void *clientdata) { std::cerr << m << cmakemainGetStack(clientdata) << std::endl << std::flush; } |