From 87071200872c2450c947047350132aee493033c1 Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Thu, 2 Jan 2025 15:11:51 -0600 Subject: Get basic CSV parser operating. --- include/fud_print.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'include/fud_print.hpp') diff --git a/include/fud_print.hpp b/include/fud_print.hpp index 592b106..a8e61de 100644 --- a/include/fud_print.hpp +++ b/include/fud_print.hpp @@ -35,6 +35,17 @@ FormatResult print(FormatString fmt, Args&&... args) return format(outSink, FormatCharMode::Unchecked, fmt, std::forward(args)...); } +inline void debugPrint(FormatString fmt) +{ + static_cast(print(fmt)); +} + +template +void debugPrint(FormatString fmt, Args&&... args) +{ + static_cast(print(fmt, std::forward(args)...)); +} + } // namespace fud #endif -- cgit v1.2.3