diff options
author | tobo <tobo@yandex-team.com> | 2022-09-21 01:45:40 +0300 |
---|---|---|
committer | tobo <tobo@yandex-team.com> | 2022-09-21 01:45:40 +0300 |
commit | 0689e062e6e4d2043a570ee72a9995ccfbe69497 (patch) | |
tree | 1f749e08e7a8774161574141b001b69beb8a0bb4 | |
parent | 62fd1ae429a9401f4870113dcacb4b6d9da3cac9 (diff) | |
download | ydb-0689e062e6e4d2043a570ee72a9995ccfbe69497.tar.gz |
remove unused includes
-rw-r--r-- | library/cpp/logger/file.cpp | 1 | ||||
-rw-r--r-- | library/cpp/logger/log.cpp | 3 | ||||
-rw-r--r-- | library/cpp/logger/rotating_file.cpp | 1 | ||||
-rw-r--r-- | library/cpp/logger/sync_page_cache_file.cpp | 1 | ||||
-rw-r--r-- | library/cpp/logger/system.cpp | 1 |
5 files changed, 0 insertions, 7 deletions
diff --git a/library/cpp/logger/file.cpp b/library/cpp/logger/file.cpp index 15a4946eda..e0d5f3fee1 100644 --- a/library/cpp/logger/file.cpp +++ b/library/cpp/logger/file.cpp @@ -3,7 +3,6 @@ #include <util/system/file.h> #include <util/system/rwlock.h> -#include <util/generic/string.h> /* * file log diff --git a/library/cpp/logger/log.cpp b/library/cpp/logger/log.cpp index 6c4a898ab2..286896a6ea 100644 --- a/library/cpp/logger/log.cpp +++ b/library/cpp/logger/log.cpp @@ -5,12 +5,9 @@ #include "stream.h" #include "thread.h" -#include <util/string/cast.h> #include <util/stream/printf.h> #include <util/system/yassert.h> -#include <util/generic/string.h> #include <util/generic/scope.h> -#include <util/generic/yexception.h> THolder<TLogBackend> CreateLogBackend(const TString& fname, ELogPriority priority, bool threaded) { TLogBackendCreatorUninitialized creator; diff --git a/library/cpp/logger/rotating_file.cpp b/library/cpp/logger/rotating_file.cpp index 4fe1daf4b7..bab6f0067c 100644 --- a/library/cpp/logger/rotating_file.cpp +++ b/library/cpp/logger/rotating_file.cpp @@ -7,7 +7,6 @@ #include <util/system/rwlock.h> #include <util/system/fs.h> #include <library/cpp/deprecated/atomic/atomic.h> -#include <util/generic/string.h> /* * rotating file log diff --git a/library/cpp/logger/sync_page_cache_file.cpp b/library/cpp/logger/sync_page_cache_file.cpp index a0e93a78d7..86cf0fff88 100644 --- a/library/cpp/logger/sync_page_cache_file.cpp +++ b/library/cpp/logger/sync_page_cache_file.cpp @@ -5,7 +5,6 @@ #include <util/system/file.h> #include <util/system/info.h> #include <util/system/mutex.h> -#include <util/system/rwlock.h> #include <util/system/align.h> class TSyncPageCacheFileLogBackend::TImpl: public TNonCopyable { diff --git a/library/cpp/logger/system.cpp b/library/cpp/logger/system.cpp index 42233f63d2..4c5d24a9ec 100644 --- a/library/cpp/logger/system.cpp +++ b/library/cpp/logger/system.cpp @@ -1,6 +1,5 @@ #include <util/stream/output.h> #include <util/stream/null.h> -#include <util/system/compat.h> #include <util/system/yassert.h> #include <util/system/defaults.h> #include <util/generic/singleton.h> |