From 4dd87c299fb79de30561cfea5e979402f7311360 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 28 Sep 2001 11:33:25 +0000 Subject: [PATCH] Fixed iterator definition [SVN r11299] --- include/boost/regex/detail/fileiter.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/regex/detail/fileiter.hpp b/include/boost/regex/detail/fileiter.hpp index dbf2dda4..f106d0a3 100644 --- a/include/boost/regex/detail/fileiter.hpp +++ b/include/boost/regex/detail/fileiter.hpp @@ -193,6 +193,9 @@ public: }; class BOOST_REGEX_DECL mapfile_iterator +#if !defined(BOOST_NO_STD_ITERATOR) || defined(BOOST_MSVC_STD_ITERATOR) +: public std::iterator +#endif { typedef mapfile::pointer internal_pointer; internal_pointer* node;