Просмотр исходного кода

Restoring authorship annotation for <justdev@yandex-team.ru>. Commit 2 of 2.

justdev 3 лет назад
Родитель
Сommit
88931f8800
1 измененных файлов с 5 добавлено и 5 удалено
  1. 5 5
      util/generic/xrange.h

+ 5 - 5
util/generic/xrange.h

@@ -245,11 +245,11 @@ namespace NPrivate {
 
 }
 
-/** 
- * generate arithmetic progression that starts at start with certain step and stop at finish (not including) 
- * 
- * @param step must be non-zero 
- */ 
+/**
+ * generate arithmetic progression that starts at start with certain step and stop at finish (not including)
+ *
+ * @param step must be non-zero
+ */
 template <typename T>
 constexpr ::NPrivate::TSteppedXRange<T> xrange(T start, T finish, decltype(T() - T()) step) noexcept {
     return {start, finish, step};