From cd72e4b2300a5a1bdaf2f53529c9511f5eaa5f3d Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Fri, 13 Nov 2009 14:41:54 +0000 Subject: [PATCH] Filesystem: Merge trunk [SVN r57635] --- doc/reference.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/reference.html b/doc/reference.html index 0b90c52..7cb751f 100644 --- a/doc/reference.html +++ b/doc/reference.html @@ -2206,7 +2206,7 @@ systems. --end note.]

basic_filesystem_error<Path1, Path2> if ec is not zero.

-
template <class Path> void remove(const Path& p, system::error_code & ec = singular );
+
template <class Path> bool remove(const Path& p, system::error_code & ec = singular );

Effects:  Removes the file p, as if by POSIX @@ -2224,6 +2224,8 @@ systems. --end note.]

the error.if ec != singular, then ec.clear() +

Returns: true if the file was removed, otherwise + false.

Postcondition: !exists(p)

Throws: See Effects.

[Note: A symbolic link is itself removed, rather than the file it @@ -3085,7 +3087,7 @@ final document.

Distributed under the Boost Software License, Version 1.0. See www.boost.org/LICENSE_1_0.txt

Revised -17 May 2009

+10 November 2009