diff options
author | dgolear <dgolear@yandex-team.com> | 2024-05-21 01:03:40 +0300 |
---|---|---|
committer | dgolear <dgolear@yandex-team.com> | 2024-05-21 01:15:41 +0300 |
commit | a92a0d80c339ed6f70624dffa79288e61b72e941 (patch) | |
tree | 14ae8539e97846150a92530242efeb4b5b5fc08e /yt | |
parent | 52107f6c22b7a6a09f394b920b18b6bae386ceb7 (diff) | |
download | ydb-a92a0d80c339ed6f70624dffa79288e61b72e941.tar.gz |
YT: Add FormatValue for std::source_location
YTORM-1057
0aa4ceb80d984a15c92a69f242ecf517b3c7a07c
Diffstat (limited to 'yt')
-rw-r--r-- | yt/yt/library/ytprof/heap_profiler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yt/yt/library/ytprof/heap_profiler.cpp b/yt/yt/library/ytprof/heap_profiler.cpp index 666491a0f6..822b96ffc2 100644 --- a/yt/yt/library/ytprof/heap_profiler.cpp +++ b/yt/yt/library/ytprof/heap_profiler.cpp @@ -12,6 +12,7 @@ #include <util/generic/hash_set.h> #include <util/string/join.h> +#include <util/string/cast.h> #include <tcmalloc/malloc_extension.h> @@ -45,7 +46,7 @@ Y_WEAK std::optional<TString> FindTagValue( { Y_UNUSED(tags); Y_UNUSED(key); - return ToString(NullMemoryTag); + return ::ToString(NullMemoryTag); } Y_WEAK void StartAllocationTagsCleanupThread(TDuration /*cleanupInterval*/) |