Skip to content

Commit cafe60d

Browse files
alimpfardawesomekling
authored andcommitted
AK: Disable assertion output colors on windows
1 parent 4b60a99 commit cafe60d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

AK/Assertions.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ void ak_verification_failed(char const* message)
9191
{
9292
# if defined(AK_OS_SERENITY) || defined(AK_OS_ANDROID)
9393
bool colorize_output = true;
94+
# elif defined(AK_OS_WINDOWS)
95+
bool colorize_output = false;
9496
# else
9597
bool colorize_output = isatty(STDERR_FILENO) == 1;
9698
# endif

0 commit comments

Comments
 (0)