aboutsummaryrefslogtreecommitdiffstats
path: root/util/str_stl.h
diff options
context:
space:
mode:
authorVlad Yaroslavlev <vladon@vladon.com>2022-02-10 16:46:25 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:25 +0300
commit344ea37b4a345701ab0e67de2266a1c1bd7baf2d (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/str_stl.h
parent706b83ed7de5a473436620367af31fc0ceecde07 (diff)
downloadydb-344ea37b4a345701ab0e67de2266a1c1bd7baf2d.tar.gz
Restoring authorship annotation for Vlad Yaroslavlev <vladon@vladon.com>. Commit 2 of 2.
Diffstat (limited to 'util/str_stl.h')
-rw-r--r--util/str_stl.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/util/str_stl.h b/util/str_stl.h
index 4038303dab..f1e137181d 100644
--- a/util/str_stl.h
+++ b/util/str_stl.h
@@ -2,7 +2,7 @@
#include <util/memory/alloc.h>
#include <util/digest/numeric.h>
-#include <util/generic/string.h>
+#include <util/generic/string.h>
#include <util/generic/string_hash.h>
#include <util/generic/strbuf.h>
#include <util/generic/typetraits.h>
@@ -33,7 +33,7 @@ namespace std {
namespace NHashPrivate {
template <class T, bool needNumericHashing>
struct THashHelper {
- inline size_t operator()(const T& t) const noexcept {
+ 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
@@ -42,7 +42,7 @@ namespace NHashPrivate {
template <class T>
struct THashHelper<T, true> {
- inline size_t operator()(const T& t) const noexcept {
+ inline size_t operator()(const T& t) const noexcept {
return NumericHash(t);
}
};
@@ -63,7 +63,7 @@ struct hash: public NHashPrivate::THashHelper<T, std::is_scalar<T>::value && !st
template <typename T>
struct hash<const T*> {
- inline size_t operator()(const T* t) const noexcept {
+ inline size_t operator()(const T* t) const noexcept {
return NumericHash(t);
}
};
@@ -185,12 +185,12 @@ struct TEqualTo: public std::equal_to<T> {
};
template <>
-struct TEqualTo<TString>: public TEqualTo<TStringBuf> {
+struct TEqualTo<TString>: public TEqualTo<TStringBuf> {
using is_transparent = void;
};
template <>
-struct TEqualTo<TUtf16String>: public TEqualTo<TWtringBuf> {
+struct TEqualTo<TUtf16String>: public TEqualTo<TWtringBuf> {
using is_transparent = void;
};
@@ -227,8 +227,8 @@ struct TCIEqualTo<TStringBuf> {
};
template <>
-struct TCIEqualTo<TString> {
- inline bool operator()(const TString& a, const TString& b) const {
+struct TCIEqualTo<TString> {
+ inline bool operator()(const TString& a, const TString& b) const {
return a.size() == b.size() && strnicmp(a.data(), b.data(), a.size()) == 0;
}
};
@@ -238,12 +238,12 @@ struct TLess: public std::less<T> {
};
template <>
-struct TLess<TString>: public TLess<TStringBuf> {
+struct TLess<TString>: public TLess<TStringBuf> {
using is_transparent = void;
};
template <>
-struct TLess<TUtf16String>: public TLess<TWtringBuf> {
+struct TLess<TUtf16String>: public TLess<TWtringBuf> {
using is_transparent = void;
};
@@ -257,12 +257,12 @@ struct TGreater: public std::greater<T> {
};
template <>
-struct TGreater<TString>: public TGreater<TStringBuf> {
+struct TGreater<TString>: public TGreater<TStringBuf> {
using is_transparent = void;
};
template <>
-struct TGreater<TUtf16String>: public TGreater<TWtringBuf> {
+struct TGreater<TUtf16String>: public TGreater<TWtringBuf> {
using is_transparent = void;
};