From 46e99694a01dec2c2956e149de4877d784f32cbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Tue, 24 Jul 2007 16:30:37 +0000 Subject: [PATCH] Wrapped (const_)iterator definition with /// @cond and /// @endcond to avoid problems with Doxygen 1.5 [SVN r38283] --- include/boost/interprocess/containers/vector.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/interprocess/containers/vector.hpp b/include/boost/interprocess/containers/vector.hpp index 250d216..2717d75 100644 --- a/include/boost/interprocess/containers/vector.hpp +++ b/include/boost/interprocess/containers/vector.hpp @@ -237,6 +237,8 @@ class vector : private detail::vector_alloc_holder /// @endcond public: + /// @cond + //! Const iterator used to iterate through a vector. class const_iterator : public std::iterator { return *((const_iterator*)this) - right; } }; + /// @endcond + //! Iterator used to iterate backwards through a vector. typedef std::reverse_iterator reverse_iterator;