From 51eb9596bcb0373149989d129c6a7bca56033e3f Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 24 Jun 2003 09:02:46 -0400 Subject: [PATCH] ERR: std->kwsys_std. --- Source/kwsys/SystemTools.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index 86897851a..70d0d963f 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -1399,7 +1399,7 @@ kwsys_std::string SystemTools::GetFilenameLastExtension(const kwsys_std::string& { kwsys_std::string name = SystemTools::GetFilenameName(filename); kwsys_std::string::size_type dot_pos = name.rfind("."); - if(dot_pos != std::string::npos) + if(dot_pos != kwsys_std::string::npos) { return name.substr(dot_pos); }