forked from boostorg/regex
avoid gcc "signed/unsigned" warning
[SVN r19128]
This commit is contained in:
@ -76,7 +76,7 @@ bool ogrep_predicate<iterator, Allocator>::operator()(const boost::match_results
|
|||||||
}
|
}
|
||||||
// calculate which line we are on, by adding the number of newlines
|
// calculate which line we are on, by adding the number of newlines
|
||||||
// we've skipped in the last search:
|
// we've skipped in the last search:
|
||||||
int current_line = last_line + std::count(last_line_start, end_of_storage, '\n');
|
unsigned int current_line = last_line + std::count(last_line_start, end_of_storage, '\n');
|
||||||
// if we haven't already printed this line out, then do it now:
|
// if we haven't already printed this line out, then do it now:
|
||||||
if(last_line != current_line)
|
if(last_line != current_line)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user