From f114239d60169479c4541a960e73fee200311423 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Sat, 15 Sep 2007 01:36:14 +0000 Subject: [PATCH] Missing std added to ::remove to clear problem in Sun tests [SVN r39292] --- test/error_code_user_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/error_code_user_test.cpp b/test/error_code_user_test.cpp index ab23217..9cbf046 100644 --- a/test/error_code_user_test.cpp +++ b/test/error_code_user_test.cpp @@ -52,7 +52,7 @@ boost::system::error_code my_mkdir( const std::string & path ) boost::system::error_code my_remove( const std::string & path ) { return boost::system::error_code( - ::remove( path.c_str() ) == 0 ? 0 : errno, + std::remove( path.c_str() ) == 0 ? 0 : errno, boost::system::posix_category ); // OK for both Windows and POSIX // Alternatively, could use posix_category // on Windows and system_category on