summaryrefslogtreecommitdiffstats
path: root/util/generic/xrange.h
diff options
context:
space:
mode:
authorpechatnov <[email protected]>2022-02-10 16:48:57 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:48:57 +0300
commit8e9b2f8bbf4a2320f539eef5b85555f42c065425 (patch)
tree189a13fe5128c85492e45518171a532ffa90ba03 /util/generic/xrange.h
parent92040fb3ad117c48c87d591bf9fe916ffda61233 (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/generic/xrange.h')
-rw-r--r--util/generic/xrange.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/generic/xrange.h b/util/generic/xrange.h
index 5fc8c829121..48db812b2ee 100644
--- a/util/generic/xrange.h
+++ b/util/generic/xrange.h
@@ -148,7 +148,7 @@ namespace NPrivate {
constexpr TIterator(T value, const TSteppedXRange& parent) noexcept
: Value_(value)
- , Parent_(&parent)
+ , Parent_(&parent)
{
}
@@ -165,7 +165,7 @@ namespace NPrivate {
}
TIterator& operator++() noexcept {
- Value_ += Parent_->Step_;
+ Value_ += Parent_->Step_;
return *this;
}
@@ -202,7 +202,7 @@ namespace NPrivate {
private:
T Value_;
- const TSteppedXRange* Parent_;
+ const TSteppedXRange* Parent_;
};
using value_type = T;