Skip to content

Commit bb0d568

Browse files
committed
Remove tabs and use space
1 parent e364fe9 commit bb0d568

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/sorting_algorithms/sort.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -747,11 +747,11 @@ namespace detail {
747747

748748
template<class Int>
749749
inline Int log2(Int n) {
750-
Int i;
751-
for (i = 0; n != 0; ++i) {
752-
n >>= 1;
750+
Int i;
751+
for (i = 0; n != 0; ++i) {
752+
n >>= 1;
753753
}
754-
return i - 1;
754+
return i - 1;
755755
}
756756

757757
template<class RandomAccessIterator, class Compare>

0 commit comments

Comments
 (0)