impr: Properly print new line characters in cli

This commit is contained in:
WerWolv
2023-07-21 15:17:21 +02:00
parent d3f493b6c2
commit f6bbfd7283
2 changed files with 36 additions and 31 deletions

View File

@@ -16,4 +16,9 @@ namespace hex {
fmt::print(fmt::runtime(format), args...);
}
template<typename... Args>
inline void println(std::string_view format, Args... args) {
fmt::println(fmt::runtime(format), args...);
}
}