ModernSystemC icon indicating copy to clipboard operation
ModernSystemC copied to clipboard

Faster and simpler I/O using C++20 format

Open dcblack opened this issue 2 years ago • 0 comments

A lot of programmers prefer printf over std::cout due to its simpler formatting; however, printf suffers from safety issues. A huge step forward to solving this problem was the introduction of the {fmt} library (see https://fmt.dev). C++20 has accepted this into the standard library, but versions exist compatible as far as C++11.

So I propose reworking the report.hpp to take this approach as an option/alternative to .

dcblack avatar Sep 16 '21 19:09 dcblack