Regex.C++17: Fix iterator usage.

This commit is contained in:
jzmaddock
2017-12-16 09:26:33 +00:00
parent 2608372174
commit e62d8b5332

View File

@ -72,11 +72,13 @@ class string_out_iterator
#endif // ndef BOOST_NO_STD_ITERATOR
{
#ifdef BOOST_NO_STD_ITERATOR
public:
typedef std::output_iterator_tag iterator_category;
typedef void value_type;
typedef void difference_type;
typedef void pointer;
typedef void reference;
private:
#endif // BOOST_NO_STD_ITERATOR
S* out;