feat(colors): adds 256 and 16M colors mode support in fmt

This commit is contained in:
Johann Dreo 2023-01-23 12:08:09 +01:00
commit 7955ec197f
6 changed files with 795 additions and 75 deletions

14
tests/t-one-line-if.cpp Normal file
View file

@ -0,0 +1,14 @@
#include "../clutchlog/clutchlog.h"
int main()
{
if(true)
CLUTCHLOG(error, "WHAT?");
else
CLUTCHLOG(info, "OH!");
if(false)
CLUTCHLOG(info, "AH!");
else
CLUTCHLOG(error, "NO!");
}