mirror of
https://github.com/boostorg/regex.git
synced 2025-07-30 04:27:22 +02:00
Added missing typename.
[SVN r74900]
This commit is contained in:
@ -30,7 +30,7 @@
|
|||||||
template <class I>
|
template <class I>
|
||||||
typename I::value_type iterate_over(I a, I b)
|
typename I::value_type iterate_over(I a, I b)
|
||||||
{
|
{
|
||||||
typedef I::value_type value_type;
|
typedef typename I::value_type value_type;
|
||||||
value_type v = 0;
|
value_type v = 0;
|
||||||
while(a != b)
|
while(a != b)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user