diff options
author | rmcf <[email protected]> | 2022-02-10 16:51:02 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:51:02 +0300 |
commit | 1f6a6eecc76bc32831570c7c438dc43e229b09aa (patch) | |
tree | 77620f70e620e13543e994119453235e2c498002 /util/string | |
parent | 459ffdc863dea09f4686b9c427f49ad2c04fddc3 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 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 90e925c194c..0597026c034 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()); } |