diff options
Diffstat (limited to 'include/fud_print.hpp')
-rw-r--r-- | include/fud_print.hpp | 2 |
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) |