From 21638b1d631050c175245499edaa08e83a4cce1b Mon Sep 17 00:00:00 2001
From: Bill Hoffman <bill.hoffman@kitware.com>
Date: Thu, 2 Mar 2006 21:33:57 -0500
Subject: [PATCH] ENH: fix std in kwsys, has to be kwsys_stl

---
 Registry.cxx    | 1 -
 SystemTools.cxx | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/Registry.cxx b/Registry.cxx
index 7c298f7..6e75c66 100644
--- a/Registry.cxx
+++ b/Registry.cxx
@@ -267,7 +267,6 @@ bool Registry::DeleteValue(const char *subkey, const char *key)
     if ( !this->Open(this->GetTopLevel(), subkey, 
         Registry::READWRITE) )
       {
-      std::cerr << "Failed to open\n";
       return res;
       }
     open = true;
diff --git a/SystemTools.cxx b/SystemTools.cxx
index da90a4d..f689508 100644
--- a/SystemTools.cxx
+++ b/SystemTools.cxx
@@ -1923,7 +1923,7 @@ kwsys_stl::string SystemTools::FindProgram(
     {
     return "";
     }
-  std::string ext = SystemTools::GetExecutableExtension();
+  kwsys_stl::string ext = SystemTools::GetExecutableExtension();
   if(ext.size())
     {
     unsigned int len = strlen(name);
-- 
GitLab