summaryrefslogtreecommitdiffstats
path: root/util/charset/unicode_table.h
diff options
context:
space:
mode:
authorAndrey Khalyavin <[email protected]>2022-02-10 16:46:30 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:46:30 +0300
commit4b839d0704ee9be1dabb0310a1f03af24963637b (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/charset/unicode_table.h
parentf773626848a7c7456803654292e716b83d69cc12 (diff)
Restoring authorship annotation for Andrey Khalyavin <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/charset/unicode_table.h')
-rw-r--r--util/charset/unicode_table.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/charset/unicode_table.h b/util/charset/unicode_table.h
index 944c567ade4..9e171b25832 100644
--- a/util/charset/unicode_table.h
+++ b/util/charset/unicode_table.h
@@ -41,7 +41,7 @@ namespace NUnicodeTable {
using TData = const TValuePtr*;
static inline TValuePtr Get(TData table, size_t index) {
- static_assert(std::is_pointer<TData>::value, "expect std::is_pointer<TData>::value");
+ static_assert(std::is_pointer<TData>::value, "expect std::is_pointer<TData>::value");
return table[index];
}
@@ -58,7 +58,7 @@ namespace NUnicodeTable {
using TData = const typename TChild::TData*;
static inline TValuePtr Get(TData table, size_t key) {
- static_assert(std::is_pointer<TData>::value, "expect std::is_pointer<TData>::value");
+ static_assert(std::is_pointer<TData>::value, "expect std::is_pointer<TData>::value");
return TChild::Get(table[key >> Shift], key & ((1 << Shift) - 1));
}
@@ -97,7 +97,7 @@ namespace NUnicodeTable {
: Data(data)
, MSize(size)
{
- static_assert(std::is_pointer<TData>::value, "expect std::is_pointer<TData>::value");
+ static_assert(std::is_pointer<TData>::value, "expect std::is_pointer<TData>::value");
}
inline TValueRef Get(size_t key, TValueRef value) const {