summaryrefslogtreecommitdiffstats
path: root/util/str_stl.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
commit132a3640fac343164b858d0a914e020a848a2848 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /util/str_stl.h
parent8e9b2f8bbf4a2320f539eef5b85555f42c065425 (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/str_stl.h')
-rw-r--r--util/str_stl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/str_stl.h b/util/str_stl.h
index 2113e2bed24..f1e137181d2 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
}
};