aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/misc/port.h
diff options
context:
space:
mode:
authorlukyan <lukyan@yandex-team.ru>2022-02-10 16:48:13 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:13 +0300
commit96647fad5355ff5ef45a00a6d85c097028584ab0 (patch)
treeb222e5ac2e2e98872661c51ccceee5da0d291e13 /library/cpp/yt/misc/port.h
parent3e359c7e6344b01b8d0b0fc619297ffdc2644c49 (diff)
downloadydb-96647fad5355ff5ef45a00a6d85c097028584ab0.tar.gz
Restoring authorship annotation for <lukyan@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/yt/misc/port.h')
-rw-r--r--library/cpp/yt/misc/port.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/yt/misc/port.h b/library/cpp/yt/misc/port.h
index 3e5e7be617..b24ac50995 100644
--- a/library/cpp/yt/misc/port.h
+++ b/library/cpp/yt/misc/port.h
@@ -59,12 +59,12 @@
#if defined(__GNUC__) || defined(__clang__)
#define PER_THREAD __thread
#define ATTRIBUTE_NO_SANITIZE_ADDRESS __attribute__((no_sanitize_address))
- // Prevent GCC from throwing out functions in release builds.
- #define ATTRIBUTE_USED __attribute__((used))
+ // Prevent GCC from throwing out functions in release builds.
+ #define ATTRIBUTE_USED __attribute__((used))
#elif defined(_MSC_VER)
#define PER_THREAD __declspec(thread)
#define ATTRIBUTE_NO_SANITIZE_ADDRESS
- #define ATTRIBUTE_USED
+ #define ATTRIBUTE_USED
#else
#error Unsupported compiler
#endif