diff options
author | pyos <pyos@yandex-team.ru> | 2022-02-10 16:47:49 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:49 +0300 |
commit | b031b9d140bcd39f4ef2764e24d37bee317aaf23 (patch) | |
tree | c0748b5dcbade83af788c0abfa89c0383d6b779c /library/cpp/balloc | |
parent | ef985e41af0868676d7a2275f1d90261253ddf3b (diff) | |
download | ydb-b031b9d140bcd39f4ef2764e24d37bee317aaf23.tar.gz |
Restoring authorship annotation for <pyos@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/balloc')
-rw-r--r-- | library/cpp/balloc/balloc.cpp | 2 | ||||
-rw-r--r-- | library/cpp/balloc/ya.make | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/balloc/balloc.cpp b/library/cpp/balloc/balloc.cpp index 14575a073a..fab489db4c 100644 --- a/library/cpp/balloc/balloc.cpp +++ b/library/cpp/balloc/balloc.cpp @@ -2,7 +2,7 @@ #include <errno.h> namespace NBalloc { - + static constexpr size_t ALIVE_SIGNATURE = 0xaULL << 56; static constexpr size_t DISABLED_SIGNATURE = 0xbULL << 56; static constexpr size_t SIGNATURE_MASK = 0xfULL << 56; diff --git a/library/cpp/balloc/ya.make b/library/cpp/balloc/ya.make index b3bd2f2e99..d4457fbba9 100644 --- a/library/cpp/balloc/ya.make +++ b/library/cpp/balloc/ya.make @@ -18,11 +18,11 @@ ELSE() malloc-info.cpp ) - PEERDIR( + PEERDIR( library/cpp/balloc/lib - ) + ) ENDIF() - + END() NEED_CHECK() |