From 11cddbbb45caa42967f7eb3e39ec5908102b8e40 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 9 Jun 2003 18:25:41 +0000 Subject: [PATCH] Minor fix, scoped_ptr in the intro should've been shared_ptr. [SVN r18745] --- index.htm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.htm b/index.htm index 2c775ac..3dcdabd 100644 --- a/index.htm +++ b/index.htm @@ -18,7 +18,7 @@

Smart Pointer Library

The smart pointer library includes five smart pointer class templates. Smart pointers ease the management of memory dynamically allocated with C++ new - expressions. In addition, scoped_ptr can ease the management of memory + expressions. In addition, shared_ptr can ease the management of memory dynamically allocated in other ways.