diff options
author | pechatnov <pechatnov@yandex-team.ru> | 2022-02-10 16:48:57 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:57 +0300 |
commit | 8e9b2f8bbf4a2320f539eef5b85555f42c065425 (patch) | |
tree | 189a13fe5128c85492e45518171a532ffa90ba03 /util/str_stl.h | |
parent | 92040fb3ad117c48c87d591bf9fe916ffda61233 (diff) | |
download | ydb-8e9b2f8bbf4a2320f539eef5b85555f42c065425.tar.gz |
Restoring authorship annotation for <pechatnov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/str_stl.h')
-rw-r--r-- | util/str_stl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/str_stl.h b/util/str_stl.h index f1e137181d..2113e2bed2 100644 --- a/util/str_stl.h +++ b/util/str_stl.h @@ -34,9 +34,9 @@ namespace NHashPrivate { template <class T, bool needNumericHashing> struct THashHelper { inline size_t operator()(const T& t) const noexcept { - return (size_t)t; // If you have a compilation error here, look at explanation below: - // Probably error is caused by undefined template specialization of THash<T> - // You can find examples of specialization in this file + return (size_t)t; // If you have a compilation error here, look at explanation below: + // Probably error is caused by undefined template specialization of THash<T> + // You can find examples of specialization in this file } }; |