diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-11-30 22:20:43 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-11-30 22:20:43 (GMT) |
commit | b180bf609b546ba56e44dffe461bd8c95d7c10d7 (patch) | |
tree | f6ee8065ad0de871cc077095d44bdc5aca68fdb6 /Source/cmake.cxx | |
parent | ab46fd164ac4713f957533ee2016eab2e3d6eb80 (diff) | |
download | CMake-b180bf609b546ba56e44dffe461bd8c95d7c10d7.zip CMake-b180bf609b546ba56e44dffe461bd8c95d7c10d7.tar.gz CMake-b180bf609b546ba56e44dffe461bd8c95d7c10d7.tar.bz2 |
fix warning for Borland build
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 8b15357..7c38113 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -82,7 +82,7 @@ void cmake::Usage(const char* program) } // Parse the args -void cmake::SetCacheArgs(cmMakefile& builder, const std::vector<std::string>& args) +void cmake::SetCacheArgs(cmMakefile& , const std::vector<std::string>& args) { for(unsigned int i=1; i < args.size(); ++i) { |