aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/utility.h
diff options
context:
space:
mode:
authorswarmer <swarmer@yandex-team.ru>2022-02-10 16:46:31 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:31 +0300
commit317da38588b7898a99fd9168571408123350012b (patch)
tree25eebc31526019ad39a6c1b13f492963d97ba439 /util/generic/utility.h
parent3b2241461d41d41ba1a706b0750c4f0f55c344f6 (diff)
downloadydb-317da38588b7898a99fd9168571408123350012b.tar.gz
Restoring authorship annotation for <swarmer@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/utility.h')
-rw-r--r--util/generic/utility.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/generic/utility.h b/util/generic/utility.h
index 43b98eeafc..4be1373a7f 100644
--- a/util/generic/utility.h
+++ b/util/generic/utility.h
@@ -6,7 +6,7 @@
template <class T>
static constexpr const T& Min(const T& l, const T& r) {
- return r < l ? r : l;
+ return r < l ? r : l;
}
template <typename T, typename... Args>
@@ -16,7 +16,7 @@ static constexpr const T& Min(const T& a, const T& b, const Args&... args) {
template <class T>
static constexpr const T& Max(const T& l, const T& r) {
- return l < r ? r : l;
+ return l < r ? r : l;
}
template <typename T, typename... Args>