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/cmIfCommand.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/cmIfCommand.cxx')
-rw-r--r-- | Source/cmIfCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmIfCommand.cxx b/Source/cmIfCommand.cxx index 157531b..903746a 100644 --- a/Source/cmIfCommand.cxx +++ b/Source/cmIfCommand.cxx @@ -43,7 +43,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. bool cmIfFunctionBlocker:: IsFunctionBlocked(const char *name, const std::vector<std::string> &args, - cmMakefile &mf) + cmMakefile &) { if (!strcmp(name,"ELSE") || !strcmp(name,"ENDIF")) { |