From 64f721d4e7d45fdf8965f641ef1ebed25cd5acc4 Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Sun, 6 Apr 2025 15:56:55 -0500 Subject: Remove FormatCharMode from fud::format. --- include/fud_print.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/fud_print.hpp') diff --git a/include/fud_print.hpp b/include/fud_print.hpp index a8e61de..13b8a52 100644 --- a/include/fud_print.hpp +++ b/include/fud_print.hpp @@ -32,7 +32,7 @@ template FormatResult print(FormatString fmt, Args&&... args) { StdOutSink outSink{}; - return format(outSink, FormatCharMode::Unchecked, fmt, std::forward(args)...); + return format(outSink, fmt, std::forward(args)...); } inline void debugPrint(FormatString fmt) -- cgit v1.2.3