summaryrefslogtreecommitdiffstats
path: root/library/cpp/yt
diff options
context:
space:
mode:
authorbabenko <[email protected]>2026-03-23 13:35:56 +0300
committerbabenko <[email protected]>2026-03-23 13:59:36 +0300
commita02cf9a7f69ae1aefc38e1dde65565fab69e733c (patch)
tree783309cd6c8b63753baef7d386fceff9d9359b4a /library/cpp/yt
parent0c51bef3852147b04c2dc9233f5d58f0e94fb215 (diff)
YT-18571: Drop YT_ATTRIBUTE_NO_SANITIZE_ADDRESS in favor of Y_NO_SANITIZE("address")
commit_hash:30841b1871a64fd6b3cc1eebcc9e4d5f1281c4fa
Diffstat (limited to 'library/cpp/yt')
-rw-r--r--library/cpp/yt/misc/port.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/library/cpp/yt/misc/port.h b/library/cpp/yt/misc/port.h
index c59061a26ca..547a432e8d2 100644
--- a/library/cpp/yt/misc/port.h
+++ b/library/cpp/yt/misc/port.h
@@ -52,11 +52,9 @@
#endif
#if defined(__GNUC__) || defined(__clang__)
- #define YT_ATTRIBUTE_NO_SANITIZE_ADDRESS __attribute__((no_sanitize_address))
// Prevent GCC from throwing out functions in release builds.
#define YT_ATTRIBUTE_USED __attribute__((used))
#elif defined(_MSC_VER)
- #define YT_ATTRIBUTE_NO_SANITIZE_ADDRESS
#define YT_ATTRIBUTE_USED
#else
#error Unsupported compiler