aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjustdev <justdev@yandex-team.ru>2022-02-10 16:52:08 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:52:08 +0300
commit54c26d6703951e9ad8fd24c06a94c8a94fa8f1a3 (patch)
tree6d6a79bd4d2c51bc693d12c81d2173aa412a8315
parentc157fb4a8b32680b601e0b58a7bf4f334c4ca8bd (diff)
downloadydb-54c26d6703951e9ad8fd24c06a94c8a94fa8f1a3.tar.gz
Restoring authorship annotation for <justdev@yandex-team.ru>. Commit 1 of 2.
-rw-r--r--util/generic/xrange.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/generic/xrange.h b/util/generic/xrange.h
index 5fc8c82912..daefd3ee40 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};