diff --git a/doc/v2/ptr.html b/doc/v2/ptr.html index d404ba1a..3b68451b 100644 --- a/doc/v2/ptr.html +++ b/doc/v2/ptr.html @@ -128,7 +128,7 @@ pointer_wrapper<T> ptr(T x);

Class pointer_wrapper synopsis

-namespace boost
+namespace boost { namespace python
 {
     template<class Ptr> class pointer_wrapper
     { 
@@ -139,7 +139,7 @@ namespace boost
         operator Ptr() const;
         Ptr get() const;
     };
-};
+}}
 

Class template pointer_wrapper types

@@ -182,13 +182,13 @@ Ptr get() const;

Class template is_pointer_wrapper synopsis

-namespace boost
+namespace boost { namespace python
 {
     template<class T> class is_pointer_wrapper
     { 
         static unspecified value = ...;
     };
-};
+}}
 
@@ -208,13 +208,13 @@ specialization of pointer_wrapper<>.

Class template unwrap_pointer synopsis

-namespace boost
+namespace boost { namespace python
 {
     template<class T> class unwrap_pointer
     { 
         typedef unspecified type;
     };
-};
+}}