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
commit11a24635da4c4f39428b182c49a7bc35e47c9534 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/generic/utility.h
parent317da38588b7898a99fd9168571408123350012b (diff)
downloadydb-11a24635da4c4f39428b182c49a7bc35e47c9534.tar.gz
Restoring authorship annotation for <swarmer@yandex-team.ru>. Commit 2 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 4be1373a7f..43b98eeafc 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>