Skip to content
Snippets Groups Projects
Commit 21638b1d authored by Bill Hoffman's avatar Bill Hoffman
Browse files

ENH: fix std in kwsys, has to be kwsys_stl

parent d3a9692e
No related branches found
No related tags found
No related merge requests found
...@@ -267,7 +267,6 @@ bool Registry::DeleteValue(const char *subkey, const char *key) ...@@ -267,7 +267,6 @@ bool Registry::DeleteValue(const char *subkey, const char *key)
if ( !this->Open(this->GetTopLevel(), subkey, if ( !this->Open(this->GetTopLevel(), subkey,
Registry::READWRITE) ) Registry::READWRITE) )
{ {
std::cerr << "Failed to open\n";
return res; return res;
} }
open = true; open = true;
......
...@@ -1923,7 +1923,7 @@ kwsys_stl::string SystemTools::FindProgram( ...@@ -1923,7 +1923,7 @@ kwsys_stl::string SystemTools::FindProgram(
{ {
return ""; return "";
} }
std::string ext = SystemTools::GetExecutableExtension(); kwsys_stl::string ext = SystemTools::GetExecutableExtension();
if(ext.size()) if(ext.size())
{ {
unsigned int len = strlen(name); unsigned int len = strlen(name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment