aboutsummaryrefslogtreecommitdiff
path: root/src/main.zig
diff options
context:
space:
mode:
authorAli Cheraghi <alichraghi@proton.me>2025-04-30 18:42:23 +0330
committerMatthew Lugg <mlugg@mlugg.co.uk>2025-11-22 22:42:38 +0000
commitdec1163fbb892f276179ae74b51007c656157d99 (patch)
tree7efa4ebe2ffb6876ffd6de0f417303232f559d87 /src/main.zig
parentce0df033cf2bb6986c6c226786e6543d05e29a77 (diff)
downloadzig-dec1163fbb892f276179ae74b51007c656157d99.tar.gz
zig-dec1163fbb892f276179ae74b51007c656157d99.zip
all: replace all `@Type` usages
Co-authored-by: Matthew Lugg <mlugg@mlugg.co.uk>
Diffstat (limited to 'src/main.zig')
-rw-r--r--src/main.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig
index 21bbecea4a..8199f2d405 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -136,7 +136,7 @@ var log_scopes: std.ArrayList([]const u8) = .empty;
pub fn log(
comptime level: std.log.Level,
- comptime scope: @Type(.enum_literal),
+ comptime scope: @EnumLiteral(),
comptime format: []const u8,
args: anytype,
) void {