ERR: Removed unused parameter and truncated debug symbol warnings.
This commit is contained in:
parent
7e67b8effb
commit
55e7d082e9
|
@ -14,6 +14,10 @@
|
||||||
PURPOSE. See the above copyright notices for more information.
|
PURPOSE. See the above copyright notices for more information.
|
||||||
|
|
||||||
=========================================================================*/
|
=========================================================================*/
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
# pragma warning (disable: 4786)
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <SystemTools.hxx>
|
#include <SystemTools.hxx>
|
||||||
#include <RegularExpression.hxx>
|
#include <RegularExpression.hxx>
|
||||||
#include <Directory.hxx>
|
#include <Directory.hxx>
|
||||||
|
@ -1247,7 +1251,7 @@ kwsys_std::string SystemTools::GetProgramPath(const char* in_name)
|
||||||
bool SystemTools::SplitProgramPath(const char* in_name,
|
bool SystemTools::SplitProgramPath(const char* in_name,
|
||||||
kwsys_std::string& dir,
|
kwsys_std::string& dir,
|
||||||
kwsys_std::string& file,
|
kwsys_std::string& file,
|
||||||
bool errorReport)
|
bool)
|
||||||
{
|
{
|
||||||
dir = in_name;
|
dir = in_name;
|
||||||
file = "";
|
file = "";
|
||||||
|
|
Loading…
Reference in New Issue