diff options
author | swarmer <swarmer@yandex-team.ru> | 2022-02-10 16:46:31 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:31 +0300 |
commit | 317da38588b7898a99fd9168571408123350012b (patch) | |
tree | 25eebc31526019ad39a6c1b13f492963d97ba439 /library/cpp/resource/resource.cpp | |
parent | 3b2241461d41d41ba1a706b0750c4f0f55c344f6 (diff) | |
download | ydb-317da38588b7898a99fd9168571408123350012b.tar.gz |
Restoring authorship annotation for <swarmer@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/resource/resource.cpp')
-rw-r--r-- | library/cpp/resource/resource.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/resource/resource.cpp b/library/cpp/resource/resource.cpp index cc20f847a5f..af686951b96 100644 --- a/library/cpp/resource/resource.cpp +++ b/library/cpp/resource/resource.cpp @@ -7,11 +7,11 @@ using namespace NResource; -bool NResource::FindExact(const TStringBuf key, TString* out) { +bool NResource::FindExact(const TStringBuf key, TString* out) { return CommonStore()->FindExact(key, out); } -void NResource::FindMatch(const TStringBuf subkey, TResources* out) { +void NResource::FindMatch(const TStringBuf subkey, TResources* out) { struct TMatch: public IMatch { inline TMatch(TResources* r) : R(r) @@ -30,7 +30,7 @@ void NResource::FindMatch(const TStringBuf subkey, TResources* out) { CommonStore()->FindMatch(subkey, m); } -TString NResource::Find(const TStringBuf key) { +TString NResource::Find(const TStringBuf key) { TString ret; if (FindExact(key, &ret)) { |