From e071aa5408ca617172923214aaf61b4cd3733483 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Fri, 24 Mar 2023 20:35:13 +0100 Subject: Refactor --- source/kit/CMakeLists.txt | 8 +++----- source/kit/async_function.c | 1 - source/kit/bigint.c | 1 - source/kit/move_back.c | 1 - source/kit/status.c | 1 - source/kit/string_ref.c | 1 - 6 files changed, 3 insertions(+), 10 deletions(-) delete mode 100644 source/kit/async_function.c delete mode 100644 source/kit/bigint.c delete mode 100644 source/kit/move_back.c delete mode 100644 source/kit/status.c delete mode 100644 source/kit/string_ref.c diff --git a/source/kit/CMakeLists.txt b/source/kit/CMakeLists.txt index e776a29..a0206b3 100644 --- a/source/kit/CMakeLists.txt +++ b/source/kit/CMakeLists.txt @@ -1,11 +1,9 @@ target_sources( kit PRIVATE - input_buffer.c bigint.c status.c secure_random.c - sha256.c thread.posix.c atomic.win32.c condition_variable.c - thread.win32.c move_back.c input_stream.c file.c string_ref.c - async_function.c allocator.c array_ref.c dynamic_array.c mutex.c - mersenne_twister_64.c + input_buffer.c secure_random.c sha256.c thread.posix.c + atomic.win32.c condition_variable.c thread.win32.c input_stream.c file.c + allocator.c array_ref.c dynamic_array.c mutex.c mersenne_twister_64.c PUBLIC $ $ diff --git a/source/kit/async_function.c b/source/kit/async_function.c deleted file mode 100644 index a62114d..0000000 --- a/source/kit/async_function.c +++ /dev/null @@ -1 +0,0 @@ -#include "async_function.h" diff --git a/source/kit/bigint.c b/source/kit/bigint.c deleted file mode 100644 index 6a516ce..0000000 --- a/source/kit/bigint.c +++ /dev/null @@ -1 +0,0 @@ -#include "bigint.h" diff --git a/source/kit/move_back.c b/source/kit/move_back.c deleted file mode 100644 index dcb62be..0000000 --- a/source/kit/move_back.c +++ /dev/null @@ -1 +0,0 @@ -#include "move_back.h" diff --git a/source/kit/status.c b/source/kit/status.c deleted file mode 100644 index 25f84b8..0000000 --- a/source/kit/status.c +++ /dev/null @@ -1 +0,0 @@ -#include "status.h" diff --git a/source/kit/string_ref.c b/source/kit/string_ref.c deleted file mode 100644 index b7d385f..0000000 --- a/source/kit/string_ref.c +++ /dev/null @@ -1 +0,0 @@ -#include "string_ref.h" -- cgit v1.2.3