forked from boostorg/regex
Regex.C++17: Fix iterator usage.
This commit is contained in:
@ -72,11 +72,13 @@ class string_out_iterator
|
|||||||
#endif // ndef BOOST_NO_STD_ITERATOR
|
#endif // ndef BOOST_NO_STD_ITERATOR
|
||||||
{
|
{
|
||||||
#ifdef BOOST_NO_STD_ITERATOR
|
#ifdef BOOST_NO_STD_ITERATOR
|
||||||
|
public:
|
||||||
typedef std::output_iterator_tag iterator_category;
|
typedef std::output_iterator_tag iterator_category;
|
||||||
typedef void value_type;
|
typedef void value_type;
|
||||||
typedef void difference_type;
|
typedef void difference_type;
|
||||||
typedef void pointer;
|
typedef void pointer;
|
||||||
typedef void reference;
|
typedef void reference;
|
||||||
|
private:
|
||||||
#endif // BOOST_NO_STD_ITERATOR
|
#endif // BOOST_NO_STD_ITERATOR
|
||||||
|
|
||||||
S* out;
|
S* out;
|
||||||
|
Reference in New Issue
Block a user