mirror of
https://github.com/boostorg/regex.git
synced 2025-07-16 13:52:17 +02:00
regex regression test fixes
[SVN r8030]
This commit is contained in:
@ -115,8 +115,8 @@ private:
|
|||||||
int* blocks, *count;
|
int* blocks, *count;
|
||||||
jm_debug_alloc* guard;
|
jm_debug_alloc* guard;
|
||||||
public:
|
public:
|
||||||
typedef size_t size_type;
|
typedef std::size_t size_type;
|
||||||
typedef ptrdiff_t difference_type;
|
typedef std::ptrdiff_t difference_type;
|
||||||
typedef char* pointer;
|
typedef char* pointer;
|
||||||
typedef const char* const_pointer;
|
typedef const char* const_pointer;
|
||||||
typedef char& reference;
|
typedef char& reference;
|
||||||
@ -182,7 +182,7 @@ public:
|
|||||||
// class debug_iterator
|
// class debug_iterator
|
||||||
//
|
//
|
||||||
template <class T>
|
template <class T>
|
||||||
struct debug_iterator : public BOOST_RE_RA_ITERATOR(T, ptrdiff_t)
|
struct debug_iterator : public BOOST_RE_RA_ITERATOR(T, std::ptrdiff_t)
|
||||||
{
|
{
|
||||||
typedef std::ptrdiff_t difference_type;
|
typedef std::ptrdiff_t difference_type;
|
||||||
typedef char_t value_type;
|
typedef char_t value_type;
|
||||||
@ -190,7 +190,7 @@ struct debug_iterator : public BOOST_RE_RA_ITERATOR(T, ptrdiff_t)
|
|||||||
typedef char_t& reference;
|
typedef char_t& reference;
|
||||||
typedef std::random_access_iterator_tag iterator_category;
|
typedef std::random_access_iterator_tag iterator_category;
|
||||||
typedef debug_iterator self;
|
typedef debug_iterator self;
|
||||||
typedef size_t size_type;
|
typedef std::size_t size_type;
|
||||||
|
|
||||||
T cur;
|
T cur;
|
||||||
T first;
|
T first;
|
||||||
|
@ -741,7 +741,7 @@ struct sub_match
|
|||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
#ifndef BOOST_OLD_REGEX_H
|
#ifdef BOOST_OLD_REGEX_H
|
||||||
//
|
//
|
||||||
// the following are deprecated, do not use!!
|
// the following are deprecated, do not use!!
|
||||||
//
|
//
|
||||||
@ -774,7 +774,7 @@ struct sub_match
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifndef BOOST_OLD_REGEX_H
|
#ifdef BOOST_OLD_REGEX_H
|
||||||
namespace re_detail{
|
namespace re_detail{
|
||||||
template <class iterator, class charT>
|
template <class iterator, class charT>
|
||||||
int do_toi(iterator i, iterator j, char c, int radix)
|
int do_toi(iterator i, iterator j, char c, int radix)
|
||||||
|
Reference in New Issue
Block a user