Refactored parse_num and parse_type to return type parse_result

This commit is contained in:
2021-11-18 23:53:15 +01:00
parent 83332cc295
commit f1952186e0
4 changed files with 91 additions and 49 deletions

View File

@@ -16,7 +16,7 @@ int main() {
Uart uart;
Logger logger(uart);
logger.log<"Test format string: {:08.4f} {}">(1, 2, 3);
logger.log<"Test:{:88}">(1, 2, 3);
return 0;
}