reverse( str.begin(), str.begin()); ?
lindenb opened this issue · 0 comments
lindenb commented
Hi all,
I was just passing by, I saw : https://github.com/Malfoy/BGREAT/blob/master/aligner.cpp#L141
reverse( str.begin(), str.begin());
shouldn't it be
reverse( str.begin(), str.end());
?