diff options
author | neksard <neksard@yandex-team.ru> | 2022-02-10 16:45:33 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:33 +0300 |
commit | 1d9c550e7c38e051d7961f576013a482003a70d9 (patch) | |
tree | b2cc84ee7850122e7ccf51d0ea21e4fa7e7a5685 /util/system | |
parent | 8f7cf138264e0caa318144bf8a2c950e0b0a8593 (diff) | |
download | ydb-1d9c550e7c38e051d7961f576013a482003a70d9.tar.gz |
Restoring authorship annotation for <neksard@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/system')
-rw-r--r-- | util/system/daemon.cpp | 2 | ||||
-rw-r--r-- | util/system/pipe.h | 12 | ||||
-rw-r--r-- | util/system/ut/ya.make | 12 |
3 files changed, 13 insertions, 13 deletions
diff --git a/util/system/daemon.cpp b/util/system/daemon.cpp index feec2be153..130e6c8f45 100644 --- a/util/system/daemon.cpp +++ b/util/system/daemon.cpp @@ -1,7 +1,7 @@ #include <util/generic/yexception.h> #include <cerrno> -#include <cstdlib> +#include <cstdlib> #include <util/system/info.h> #if defined(_win_) diff --git a/util/system/pipe.h b/util/system/pipe.h index bfa80a7258..75d0360049 100644 --- a/util/system/pipe.h +++ b/util/system/pipe.h @@ -1,9 +1,9 @@ #pragma once - -#ifdef __GNUC__ + +#ifdef __GNUC__ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Warray-bounds" //need because of bug in gcc4.9.2 -#endif +#endif #include "defaults.h" #include "file.h" @@ -84,7 +84,7 @@ private: using TImplRef = TSimpleIntrusivePtr<TImpl>; TImplRef Impl_; }; - -#ifdef __GNUC__ + +#ifdef __GNUC__ #pragma GCC diagnostic pop -#endif +#endif diff --git a/util/system/ut/ya.make b/util/system/ut/ya.make index 698f0968ef..127e7c261e 100644 --- a/util/system/ut/ya.make +++ b/util/system/ut/ya.make @@ -1,8 +1,8 @@ UNITTEST_FOR(util) - + OWNER(g:util) SUBSCRIBER(g:util-subscribers) - + FORK_TESTS() FORK_SUBTESTS() @@ -23,7 +23,7 @@ PEERDIR( library/cpp/testing/benchmark ) -SRCS( +SRCS( system/align_ut.cpp system/atexit_ut.cpp system/atomic_ut.cpp @@ -75,8 +75,8 @@ SRCS( system/user_ut.cpp system/unaligned_mem_ut.cpp system/yassert_ut.cpp -) - +) + IF (OS_WINDOWS) DEPENDS( util/system/ut/stdin_osfhandle @@ -85,4 +85,4 @@ ENDIF() REQUIREMENTS(ram:12) -END() +END() |