From 3cdf224b90fb2951d59b19ede1108a91aaf1c7c2 Mon Sep 17 00:00:00 2001 From: apio Date: Sat, 19 Nov 2022 15:46:46 +0100 Subject: [PATCH] Remove useless files now that functions are out of line --- kernel/CMakeLists.txt | 2 -- kernel/src/luna/Format.cpp | 3 --- kernel/src/luna/String.cpp | 3 --- 3 files changed, 8 deletions(-) delete mode 100644 kernel/src/luna/Format.cpp delete mode 100644 kernel/src/luna/String.cpp diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index c9eddc8e..304f59a5 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -1,11 +1,9 @@ set(SOURCES src/main.cpp - src/luna/String.cpp src/Framebuffer.cpp src/MemoryManager.cpp src/Init.cpp src/arch/Serial.cpp - src/luna/Format.cpp ) # x86-64 specific diff --git a/kernel/src/luna/Format.cpp b/kernel/src/luna/Format.cpp deleted file mode 100644 index c1307639..00000000 --- a/kernel/src/luna/Format.cpp +++ /dev/null @@ -1,3 +0,0 @@ -/* This file instantiates the functions from Luna's Format.h into a translation unit, and serves no other purpose. */ -#define _LUNA_IMPLEMENTATION -#include \ No newline at end of file diff --git a/kernel/src/luna/String.cpp b/kernel/src/luna/String.cpp deleted file mode 100644 index 20590d5d..00000000 --- a/kernel/src/luna/String.cpp +++ /dev/null @@ -1,3 +0,0 @@ -/* This file instantiates the functions from Luna's String.h into a translation unit, and serves no other purpose. */ -#define _LUNA_IMPLEMENTATION -#include \ No newline at end of file