diff options
author | snermolaev <snermolaev@yandex-team.ru> | 2022-02-10 16:45:53 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:53 +0300 |
commit | 2015790ac9fcc04caab83fccc23ab2460310a797 (patch) | |
tree | e644e9bc3f6f688561a871793b59bf8a637e0f72 /util | |
parent | c768a99151e47c3a4bb7b92c514d256abd301c4d (diff) | |
download | ydb-2015790ac9fcc04caab83fccc23ab2460310a797.tar.gz |
Restoring authorship annotation for <snermolaev@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util')
-rw-r--r-- | util/charset/wide_sse41.cpp | 24 | ||||
-rw-r--r-- | util/charset/ya.make | 2 |
2 files changed, 13 insertions, 13 deletions
diff --git a/util/charset/wide_sse41.cpp b/util/charset/wide_sse41.cpp index d1f2a74851..addbdd5652 100644 --- a/util/charset/wide_sse41.cpp +++ b/util/charset/wide_sse41.cpp @@ -1,17 +1,17 @@ #include <util/charset/wide.h> -#include <util/system/types.h> +#include <util/system/types.h> -#ifdef SSE41_STUB - -namespace NDetail { - void UTF8ToWideImplSSE41(const unsigned char*&, const unsigned char*, wchar16*&) noexcept { - } +#ifdef SSE41_STUB + +namespace NDetail { + void UTF8ToWideImplSSE41(const unsigned char*&, const unsigned char*, wchar16*&) noexcept { + } void UTF8ToWideImplSSE41(const unsigned char*&, const unsigned char*, wchar32*&) noexcept { } -} - -#else - +} + +#else + #include <util/system/compiler.h> #include <cstring> @@ -243,5 +243,5 @@ namespace NDetail { // Possible improvement: go back to the vectorized processing after the error or the 4 byte sequence } } - -#endif + +#endif diff --git a/util/charset/ya.make b/util/charset/ya.make index 26d38cb10b..eeaf5518e7 100644 --- a/util/charset/ya.make +++ b/util/charset/ya.make @@ -20,7 +20,7 @@ JOIN_SRCS( ) IF (ARCH_X86_64 AND NOT DISABLE_INSTRUCTION_SETS) - SRC_CPP_SSE41(wide_sse41.cpp) + SRC_CPP_SSE41(wide_sse41.cpp) ELSE() SRC( wide_sse41.cpp |