diff options
author | paxakor <paxakor@yandex-team.ru> | 2022-02-10 16:47:32 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:32 +0300 |
commit | 40d35c046ee3a61ee2a581f42499c5ce56ac589a (patch) | |
tree | c0748b5dcbade83af788c0abfa89c0383d6b779c /util/string/type.cpp | |
parent | 7fdbed62e54b804e2c12b86a2c2bab12f61065df (diff) | |
download | ydb-40d35c046ee3a61ee2a581f42499c5ce56ac589a.tar.gz |
Restoring authorship annotation for <paxakor@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/string/type.cpp')
-rw-r--r-- | util/string/type.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/string/type.cpp b/util/string/type.cpp index fdb71c1bcd..49671c02c2 100644 --- a/util/string/type.cpp +++ b/util/string/type.cpp @@ -15,8 +15,8 @@ bool IsSpace(const char* s, size_t len) noexcept { return true; } -template <typename TStringType> -static bool IsNumberT(const TStringType& s) noexcept { +template <typename TStringType> +static bool IsNumberT(const TStringType& s) noexcept { if (s.empty()) { return false; } @@ -32,8 +32,8 @@ bool IsNumber(const TWtringBuf s) noexcept { return IsNumberT(s); } -template <typename TStringType> -static bool IsHexNumberT(const TStringType& s) noexcept { +template <typename TStringType> +static bool IsHexNumberT(const TStringType& s) noexcept { if (s.empty()) { return false; } |