Merge pull request #15806 from linusg/std-io-tty

std: Move TTY from std.debug to std.io and add missing colors
This commit is contained in:
Veikka Tuominen
2023-05-24 16:03:44 +03:00
committed by GitHub
11 changed files with 221 additions and 208 deletions
+1 -1
View File
@@ -1354,7 +1354,7 @@ fn runOneCase(
defer all_errors.deinit(allocator);
if (all_errors.errorMessageCount() > 0) {
all_errors.renderToStdErr(.{
.ttyconf = std.debug.detectTTYConfig(std.io.getStdErr()),
.ttyconf = std.io.tty.detectConfig(std.io.getStdErr()),
});
// TODO print generated C code
return error.UnexpectedCompileErrors;