1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 04:37:44 +00:00

AK: Get rid of TStyle (output styling helper for LogStream)

This didn't end up getting used, so let's get rid of it.
This commit is contained in:
Andreas Kling 2019-11-06 11:37:03 +01:00
parent 1c8f017730
commit 2ad0ec325a
3 changed files with 2 additions and 74 deletions

View file

@ -252,7 +252,7 @@ using AK::TestSuite;
auto ___aev1 = one; \
auto ___aev2 = two; \
if (___aev1 != ___aev2) { \
dbg() << TStyle(TStyle::Red, TStyle::Bold) << "FAIL" << TStyle() << ": " __FILE__ ":" << __LINE__ << ": assertEqual(" ___str(one) ", " ___str(two) ") failed"; \
dbg() << "\033[31;1mFAIL\033[0m: " __FILE__ ":" << __LINE__ << ": assertEqual(" ___str(one) ", " ___str(two) ") failed"; \
} \
} while (0)