Skip to content

Commit

Permalink
Fix bug with misleading indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nikoskoukis-slamcore authored and skylerpan committed Mar 1, 2020
1 parent bc9af2e commit b0be675
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,12 @@ void rle(OutputIterator& out, const Iterator & begin, const Iterator & end){
count=1;
}
}

if (count>0)
{
*out=std::make_pair(current,count);
out++;
}
}

//BEGIN legacy
Expand Down

0 comments on commit b0be675

Please sign in to comment.