summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/Directory.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/kwsys/Directory.cxx')
-rw-r--r--Source/kwsys/Directory.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/kwsys/Directory.cxx b/Source/kwsys/Directory.cxx
index 0d1f374..29c7d67 100644
--- a/Source/kwsys/Directory.cxx
+++ b/Source/kwsys/Directory.cxx
@@ -16,8 +16,8 @@
#include KWSYS_HEADER(Configure.hxx)
-#include KWSYS_HEADER(std/string)
-#include KWSYS_HEADER(std/vector)
+#include KWSYS_HEADER(stl/string)
+#include KWSYS_HEADER(stl/vector)
namespace KWSYS_NAMESPACE
{
@@ -27,10 +27,10 @@ class DirectoryInternals
{
public:
// Array of Files
- kwsys_std::vector<kwsys_std::string> Files;
+ kwsys_stl::vector<kwsys_stl::string> Files;
// Path to Open'ed directory
- kwsys_std::string Path;
+ kwsys_stl::string Path;
};
//----------------------------------------------------------------------------