1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-25 11:17:26 +00:00

Eliminates dangling uses of printf.

This commit is contained in:
Thomas Harte
2019-03-02 18:07:05 -05:00
parent e1ebb7ce9c
commit d97348dd38
19 changed files with 51 additions and 48 deletions
+1 -1
View File
@@ -19,9 +19,9 @@
#else
#include <iomanip>
#include <iostream>
#include <ios>
#include <iomanip>
#define PADHEX(n) std::hex << std::setw(n) << std::right << std::setfill('0')
#define PADDEC(n) std::dec << std::setw(n) << std::right << std::setfill('0')