Eliminate stdostream (finally, that was awful.)

This commit is contained in:
2025-12-15 22:42:02 -05:00
parent f528ba69fe
commit 9dc974ebca
6 changed files with 46 additions and 51 deletions

View File

@@ -89,14 +89,10 @@ public:
double clock = get_clock();
if (clock > last_clock_ + 0.5) {
int ms = eng::memhash();
stdostream() << std::fixed << std::setprecision(2) << clock << " " << std::hex << ms << " ";
util::dprint(std::fixed, std::setprecision(2), clock, " ", std::hex, ms);
count_++;
last_clock_ = clock;
}
if (count_ == 4) {
stdostream() << std::endl;
count_ = 0;
}
}
};