diff options
author | Alexander Smirnov <alex@ydb.tech> | 2025-01-14 05:03:04 +0000 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2025-01-14 05:03:04 +0000 |
commit | 6661afff40562c23e888fe58ea6636ebae7130ef (patch) | |
tree | c85124e3e4f9b2b7170675085e450aa575bb0226 /library/cpp | |
parent | fc474d1ba278418a10604d48266980c0f290f24c (diff) | |
parent | 77108821cdaa9cad85b2b37223cf998f6dcccf46 (diff) | |
download | ydb-6661afff40562c23e888fe58ea6636ebae7130ef.tar.gz |
Merge branch 'rightlib' into merge-libs-250114-0501
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/tld/tlds-alpha-by-domain.txt | 2 | ||||
-rw-r--r-- | library/cpp/yt/memory/erased_storage.h | 1 | ||||
-rw-r--r-- | library/cpp/yt/memory/ref_counted-inl.h | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/library/cpp/tld/tlds-alpha-by-domain.txt b/library/cpp/tld/tlds-alpha-by-domain.txt index 4ed479feea4..c150e0c2ec6 100644 --- a/library/cpp/tld/tlds-alpha-by-domain.txt +++ b/library/cpp/tld/tlds-alpha-by-domain.txt @@ -1,4 +1,4 @@ -# Version 2025011000, Last Updated Fri Jan 10 07:07:01 2025 UTC +# Version 2025011300, Last Updated Mon Jan 13 07:07:01 2025 UTC AAA AARP ABB diff --git a/library/cpp/yt/memory/erased_storage.h b/library/cpp/yt/memory/erased_storage.h index 46ea5cc854d..54870f7e071 100644 --- a/library/cpp/yt/memory/erased_storage.h +++ b/library/cpp/yt/memory/erased_storage.h @@ -2,6 +2,7 @@ #include <concepts> #include <memory> +#include <type_traits> namespace NYT { diff --git a/library/cpp/yt/memory/ref_counted-inl.h b/library/cpp/yt/memory/ref_counted-inl.h index 923b53c822c..04dd629a26b 100644 --- a/library/cpp/yt/memory/ref_counted-inl.h +++ b/library/cpp/yt/memory/ref_counted-inl.h @@ -8,6 +8,8 @@ #include <util/system/sanitizers.h> +#include <stdlib.h> + namespace NYT { //////////////////////////////////////////////////////////////////////////////// |