summaryrefslogtreecommitdiffstats
path: root/library/cpp/yt
diff options
context:
space:
mode:
authorbabenko <[email protected]>2026-06-07 01:15:06 +0300
committerbabenko <[email protected]>2026-06-07 01:31:50 +0300
commitffc038d5a916cec181915795ca4b45f07ee2ae05 (patch)
tree5ad7c1359f9d96dbd9e17ccb7e1e34e3680682c8 /library/cpp/yt
parentd1c1aedb88345a776f41cd481415394ad0f4ca60 (diff)
YT-22593: Reduce TString usage in core/misc
commit_hash:ba8c42476d6274212745348071682042e780037f
Diffstat (limited to 'library/cpp/yt')
-rw-r--r--library/cpp/yt/error/origin_attributes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/yt/error/origin_attributes.cpp b/library/cpp/yt/error/origin_attributes.cpp
index 2198912d419..9feaca15f61 100644
--- a/library/cpp/yt/error/origin_attributes.cpp
+++ b/library/cpp/yt/error/origin_attributes.cpp
@@ -88,7 +88,7 @@ std::optional<TOriginAttributes::TErasedExtensionData> GetExtensionData()
std::string FormatOrigin(const TOriginAttributes& attributes)
{
- using TFunctor = TString(*)(const TOriginAttributes&);
+ using TFunctor = std::string(*)(const TOriginAttributes&);
if (auto strong = NGlobal::GetErasedVariable(FormatOriginTag)) {
return strong->AsConcrete<TFunctor>()(attributes);