From 7043e5585fb3af89c039616c608de4a6e0b98c0a Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 20 Jul 2004 10:38:44 +0000 Subject: [PATCH] Ooops, last fix had a misplaced "typename" in it, and therefore was not legal code, strangely some compilers just didn't care. [SVN r23831] --- include/boost/regex/v4/regex_format.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/v4/regex_format.hpp b/include/boost/regex/v4/regex_format.hpp index 15b29707..a2ae9250 100644 --- a/include/boost/regex/v4/regex_format.hpp +++ b/include/boost/regex/v4/regex_format.hpp @@ -567,7 +567,7 @@ public: typedef typename S::value_type value_type; typedef typename S::pointer pointer; typedef typename S::reference reference; - typedef typename std::output_iterator_tag iterator_category; + typedef std::output_iterator_tag iterator_category; string_out_iterator(S& s) : out(&s) {} string_out_iterator& operator++() { return *this; }