summaryrefslogtreecommitdiffhomepage
path: root/Kernel/KernelKit
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/KernelKit')
-rw-r--r--Kernel/KernelKit/DebugOutput.hxx18
1 files changed, 0 insertions, 18 deletions
diff --git a/Kernel/KernelKit/DebugOutput.hxx b/Kernel/KernelKit/DebugOutput.hxx
index 6183c18d..f0c4565a 100644
--- a/Kernel/KernelKit/DebugOutput.hxx
+++ b/Kernel/KernelKit/DebugOutput.hxx
@@ -44,24 +44,6 @@ namespace Kernel
virtual ~TerminalDevice() = default;
- TerminalDevice& Number(const Long Data) noexcept
- {
- number(Data);
- return *this;
- }
-
- TerminalDevice& HexNumber(const Long Data) noexcept
- {
- hex_number(Data);
- return *this;
- }
-
- TerminalDevice& EndLine() noexcept
- {
- end_line();
- return *this;
- }
-
/// @brief returns device name (terminal name)
/// @return string type (const char*)
virtual const char* Name() const override