From 0d0cfaea08f60df59d35fa98a79660109412d6c0 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 11 Mar 2005 10:07:36 -0500 Subject: [PATCH] COMP: Added missing include of string.h. --- Source/kwsys/CommandLineArguments.cxx | 1 + Source/kwsys/RegularExpression.cxx | 1 + Source/kwsys/SystemTools.cxx | 10 ++++------ 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/kwsys/CommandLineArguments.cxx b/Source/kwsys/CommandLineArguments.cxx index 172ad60de..de30952a8 100644 --- a/Source/kwsys/CommandLineArguments.cxx +++ b/Source/kwsys/CommandLineArguments.cxx @@ -24,6 +24,7 @@ #include #include +#include #ifdef _MSC_VER # pragma warning (disable: 4786) diff --git a/Source/kwsys/RegularExpression.cxx b/Source/kwsys/RegularExpression.cxx index 5a2a5e8fd..707c70ac9 100644 --- a/Source/kwsys/RegularExpression.cxx +++ b/Source/kwsys/RegularExpression.cxx @@ -34,6 +34,7 @@ #include KWSYS_HEADER(RegularExpression.hxx) #include +#include namespace KWSYS_NAMESPACE { diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index 36b739f72..d9a2f1a99 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -23,16 +23,17 @@ # pragma warning (disable: 4786) #endif -#include -#include #include #include +#include +#include +#include +#include #include // support for realpath call #ifndef _WIN32 #include -#include #include #include #include @@ -42,9 +43,6 @@ #if defined(_WIN32) && (defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)) #include -#include -#include -#include #include #include #define _unlink unlink