summaryrefslogtreecommitdiff
path: root/include/fud_print.hpp
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2025-04-06 15:56:55 -0500
committerDominick Allen <djallen@librehumanitas.org>2025-04-06 15:56:55 -0500
commit64f721d4e7d45fdf8965f641ef1ebed25cd5acc4 (patch)
treebfaeada08d9cc7149c29b92655336dea28987683 /include/fud_print.hpp
parent1f6ec08ea811c71c5b918a4bc197d319cb66abff (diff)
Remove FormatCharMode from fud::format.HEADmaster
Diffstat (limited to 'include/fud_print.hpp')
-rw-r--r--include/fud_print.hpp2
1 files changed, 1 insertions, 1 deletions
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 <typename... Args>
FormatResult print(FormatString fmt, Args&&... args)
{
StdOutSink outSink{};
- return format(outSink, FormatCharMode::Unchecked, fmt, std::forward<Args>(args)...);
+ return format(outSink, fmt, std::forward<Args>(args)...);
}
inline void debugPrint(FormatString fmt)