$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: bdawes_at_[hidden]
Date: 2007-09-14 21:36:14
Author: bemandawes
Date: 2007-09-14 21:36:14 EDT (Fri, 14 Sep 2007)
New Revision: 39292
URL: http://svn.boost.org/trac/boost/changeset/39292
Log:
Missing std added to ::remove to clear problem in Sun tests
Text files modified:
trunk/libs/system/test/error_code_user_test.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/libs/system/test/error_code_user_test.cpp
==============================================================================
--- trunk/libs/system/test/error_code_user_test.cpp (original)
+++ trunk/libs/system/test/error_code_user_test.cpp 2007-09-14 21:36:14 EDT (Fri, 14 Sep 2007)
@@ -52,7 +52,7 @@
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