diff options
author | Oleg Sidorkin <[email protected]> | 2022-02-10 16:49:36 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:36 +0300 |
commit | 5ce74d4fee2d42a4b86efc02dfdc704d458760e1 (patch) | |
tree | f16a3558ca40d453a1c6a2ed764bd75d64cffade /util/string/subst.h | |
parent | cd33f9aa8461f8e2b0b9e68efbb6bc9856197dc9 (diff) |
Restoring authorship annotation for Oleg Sidorkin <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/string/subst.h')
-rw-r--r-- | util/string/subst.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/string/subst.h b/util/string/subst.h index 45b622fbefd..6c72fab4c61 100644 --- a/util/string/subst.h +++ b/util/string/subst.h @@ -50,7 +50,7 @@ size_t SubstGlobal(TUtf32String& text, wchar32 what, wchar32 with, size_t from = * @return Result string */ template <class TStringType, class TPatternType> -Y_WARN_UNUSED_RESULT TStringType SubstGlobalCopy(TStringType result, TPatternType what, TPatternType with, size_t from = 0) { +Y_WARN_UNUSED_RESULT TStringType SubstGlobalCopy(TStringType result, TPatternType what, TPatternType with, size_t from = 0) { SubstGlobal(result, what, with, from); return result; } |