Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / pool_alloc_mixin.hh
index 0a3b2af..0f13935 100644 (file)
@@ -30,7 +30,7 @@
 #include <boost/pool/singleton_pool.hpp>
 
 //#include "pool_alloc_mixin.mpp"
-///////////////////////////////hh.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 
@@ -40,7 +40,7 @@ namespace senf {
 
         This mixin will overload a classes <tt>operator new</tt> and <tt>operator delete</tt> so as
         to make the class use the <a
-        href="http://www.boost.org/libs/pool/doc/index.html">Boost.Pool</a> memory allocator by
+        href="http://www.boost.org/doc/libs/release/libs/pool/doc/index.html">Boost.Pool</a> memory allocator by
         default. Using this allocator does however introduce a few restrictions:
 
         \li The operator is defined for a fixed size. Therefore if you derive from the class <b>you
@@ -58,7 +58,7 @@ namespace senf {
         \endcode
 
         \note pool_alloc_mixin uses the <a
-            href="http://www.boost.org/libs/pool/doc/index.html">Boost.Pool</a> <i>singleton
+            href="http://www.boost.org/doc/libs/release/libs/pool/doc/index.html">Boost.Pool</a> <i>singleton
             pool</i> interface with the tag <tt>pool_alloc_mixin_tag</tt>. This class is accessible
             via the <tt>pool</tt> member. Using this member, it is simple to call relevant pool
             functions, e.g. <tt>SomeClass::pool<>::release_memory()</tt>.
@@ -93,7 +93,7 @@ namespace senf {
 
 }
 
-///////////////////////////////hh.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 //#include "pool_alloc_mixin.cci"
 //#include "pool_alloc_mixin.ct"
 #include "pool_alloc_mixin.cti"