diff options
author | babenko <babenko@yandex-team.com> | 2025-02-22 17:28:25 +0300 |
---|---|---|
committer | babenko <babenko@yandex-team.com> | 2025-02-22 17:48:29 +0300 |
commit | 59afaa0cb7cd89146dd10f5446256afcce33bd0e (patch) | |
tree | 38d3c46bcba8da7c3b8ffc6b818695bc6b62d532 /library/cpp/yt/misc/guid.cpp | |
parent | 1d9cc117e33b162a5247032e175ed7ea26971437 (diff) | |
download | ydb-59afaa0cb7cd89146dd10f5446256afcce33bd0e.tar.gz |
YT-22593: More trivial TString->std::string migrations
[nodiff:runtime]
commit_hash:1ba799aed1703ab7c6304b6da7090b3337f768dd
Diffstat (limited to 'library/cpp/yt/misc/guid.cpp')
-rw-r--r-- | library/cpp/yt/misc/guid.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/yt/misc/guid.cpp b/library/cpp/yt/misc/guid.cpp index fc4f146532..0dcb9a1f7e 100644 --- a/library/cpp/yt/misc/guid.cpp +++ b/library/cpp/yt/misc/guid.cpp @@ -49,7 +49,7 @@ TGuid TGuid::FromString(TStringBuf str) TGuid guid; if (!FromString(str, &guid)) { throw TSimpleException(Sprintf("Error parsing GUID \"%s\"", - TString(str).c_str())); + std::string(str).c_str())); } return guid; } @@ -106,7 +106,7 @@ TGuid TGuid::FromStringHex32(TStringBuf str) TGuid guid; if (!FromStringHex32(str, &guid)) { throw TSimpleException(Sprintf("Error parsing Hex32 GUID \"%s\"", - TString(str).c_str())); + str.data())); } return guid; } |