From 0cee41d47e1ae5ec0f97d6aa3f7d54f1e8513f5c Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 21 Jul 2005 00:51:38 +0000 Subject: [PATCH] Minor documentation fix. [SVN r30190] --- shared_ptr.htm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/shared_ptr.htm b/shared_ptr.htm index fb15da1..1eaf661 100644 --- a/shared_ptr.htm +++ b/shared_ptr.htm @@ -170,8 +170,7 @@ void bad()

constructors

shared_ptr(); // never throws
-

Effects: Constructs an empty shared_ptr. Empty - shared_ptr objects have an unspecified use_count.

+

Effects: Constructs an empty shared_ptr.

Postconditions: use_count() == 0 && get() == 0.

Throws: nothing.