From 097023a9c14dfcfa83041a0adeb6864e7132a5d8 Mon Sep 17 00:00:00 2001 From: Brad King <brad.king@kitware.com> Date: Thu, 10 Apr 2003 09:03:46 -0400 Subject: [PATCH] ERR: Removed unused parameter and truncated debug symbol warnings. --- SystemTools.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/SystemTools.cxx b/SystemTools.cxx index c8cbf60..b673711 100644 --- a/SystemTools.cxx +++ b/SystemTools.cxx @@ -14,6 +14,10 @@ PURPOSE. See the above copyright notices for more information. =========================================================================*/ +#ifdef _MSC_VER +# pragma warning (disable: 4786) +#endif + #include <SystemTools.hxx> #include <RegularExpression.hxx> #include <Directory.hxx> @@ -1247,7 +1251,7 @@ kwsys_std::string SystemTools::GetProgramPath(const char* in_name) bool SystemTools::SplitProgramPath(const char* in_name, kwsys_std::string& dir, kwsys_std::string& file, - bool errorReport) + bool) { dir = in_name; file = ""; -- GitLab