diff options
| author | justdev <[email protected]> | 2022-02-10 16:52:08 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:52:08 +0300 | 
| commit | 54c26d6703951e9ad8fd24c06a94c8a94fa8f1a3 (patch) | |
| tree | 6d6a79bd4d2c51bc693d12c81d2173aa412a8315 | |
| parent | c157fb4a8b32680b601e0b58a7bf4f334c4ca8bd (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
| -rw-r--r-- | util/generic/xrange.h | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/util/generic/xrange.h b/util/generic/xrange.h index 5fc8c829121..daefd3ee40f 100644 --- a/util/generic/xrange.h +++ b/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};  | 
