diff options
author | rmcf <rmcf@yandex-team.ru> | 2022-02-10 16:51:02 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:51:02 +0300 |
commit | 6a1621c5991cd17c6352affcad7c6931bef18917 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/string | |
parent | 1f6a6eecc76bc32831570c7c438dc43e229b09aa (diff) | |
download | ydb-6a1621c5991cd17c6352affcad7c6931bef18917.tar.gz |
Restoring authorship annotation for <rmcf@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/string')
-rw-r--r-- | util/string/cast.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/string/cast.h b/util/string/cast.h index 0597026c03..90e925c194 100644 --- a/util/string/cast.h +++ b/util/string/cast.h @@ -339,8 +339,8 @@ inline TInt IntFromString(const TChar* str) { return IntFromString<TInt, base>(str, std::char_traits<TChar>::length(str)); } -template <class TInt, int base, class TStringType> -inline TInt IntFromString(const TStringType& str) { +template <class TInt, int base, class TStringType> +inline TInt IntFromString(const TStringType& str) { return IntFromString<TInt, base>(str.data(), str.size()); } |