ENH: fix std in kwsys, has to be kwsys_stl

This commit is contained in:
Bill Hoffman 2006-03-02 21:33:57 -05:00
parent 8aa178639c
commit be375b1bcd
2 changed files with 1 additions and 2 deletions

View File

@ -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;

View File

@ -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);