From 9383bbc28377233f68d5541a68bf5ee81eb80e17 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 11 Feb 2013 16:10:24 +0000 Subject: [PATCH] Merge typo in docs; Fixes 7974 [SVN r82819] --- in_place_factories.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/in_place_factories.html b/in_place_factories.html index f8a4c7b..8eb7ea8 100644 --- a/in_place_factories.html +++ b/in_place_factories.html @@ -46,7 +46,7 @@ HREF="../../boost/utility/typed_in_place_factory.hpp">boost/utility/typed_in_pla

Suppose we have a class

struct X
 {
-  X ( int, std:::string ) ;
+  X ( int, std::string ) ;
 } ;

And a container for it which supports an empty state (that is, which can contain zero objects):

struct C