From 3990a50b00294e5b6e5fbfd83f1cbe5759832464 Mon Sep 17 00:00:00 2001 From: Sylar Date: Mon, 5 Jan 2026 22:57:37 +0100 Subject: [PATCH] Added ostd::OutputHandlerBase::tab() virtual function --- other/build.nr | 2 +- src/ostd/IOHandlers.hpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/other/build.nr b/other/build.nr index 4fa0673..2d94bd3 100644 --- a/other/build.nr +++ b/other/build.nr @@ -1 +1 @@ -1939 +1940 diff --git a/src/ostd/IOHandlers.hpp b/src/ostd/IOHandlers.hpp index a97e05f..311cfad 100644 --- a/src/ostd/IOHandlers.hpp +++ b/src/ostd/IOHandlers.hpp @@ -135,6 +135,7 @@ namespace ostd inline virtual OutputHandlerBase& p(double f, uint8_t precision = 0) { return *this; } inline virtual OutputHandlerBase& nl(void) { return *this; } + inline virtual OutputHandlerBase& tab(void) { return *this; } inline virtual OutputHandlerBase& flush(void) { return *this; } inline virtual OutputHandlerBase& reset(void) { return *this; } inline virtual OutputHandlerBase& clear(void) { return *this; }