Wrapped everything in namespaces

This commit is contained in:
2021-11-18 22:05:26 +01:00
parent e028e43b6a
commit 83332cc295
4 changed files with 39 additions and 21 deletions

View File

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