diff options
author | neksard <neksard@yandex-team.ru> | 2022-02-10 16:45:23 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:23 +0300 |
commit | 8f7cf138264e0caa318144bf8a2c950e0b0a8593 (patch) | |
tree | 83bf5c8c8047c42d8475e6095df90ccdc3d1b57f /util/system | |
parent | d3a398281c6fd1d3672036cb2d63f842d2cb28c5 (diff) | |
download | ydb-8f7cf138264e0caa318144bf8a2c950e0b0a8593.tar.gz |
Restoring authorship annotation for <neksard@yandex-team.ru>. Commit 1 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 130e6c8f45..feec2be153 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 75d0360049..bfa80a7258 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 127e7c261e..698f0968ef 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() |