Browse Source

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

justdev 3 years ago
parent
commit
88931f8800
1 changed files with 5 additions and 5 deletions
  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>
 template <typename T>
 constexpr ::NPrivate::TSteppedXRange<T> xrange(T start, T finish, decltype(T() - T()) step) noexcept {
 constexpr ::NPrivate::TSteppedXRange<T> xrange(T start, T finish, decltype(T() - T()) step) noexcept {
     return {start, finish, step};
     return {start, finish, step};