Skip to content

Commit

Permalink
Change _useEscCodes from shared to immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
atilaneves committed Apr 30, 2024
1 parent a4f20ed commit b3b9003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subpackages/runner/source/unit_threaded/runner/io.d
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void writelnUt(T...)(auto ref T args) {

private shared(bool) _debugOutput = false; ///print debug msgs?
private shared(bool) _forceEscCodes = false; ///use ANSI escape codes anyway?
package(unit_threaded) shared(bool) _useEscCodes;
package(unit_threaded) immutable bool _useEscCodes;


version (Windows) {
Expand Down

0 comments on commit b3b9003

Please sign in to comment.