From 668c0cdeda93491050b1f260865a963d008fd553 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 28 Dec 2023 21:20:51 -0700 Subject: [PATCH] compiler: Compilation.Config: trivial refactor --- src/Compilation/Config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Compilation/Config.zig b/src/Compilation/Config.zig index 5f8776fd1f..78273f66e4 100644 --- a/src/Compilation/Config.zig +++ b/src/Compilation/Config.zig @@ -105,7 +105,7 @@ pub const Options = struct { export_memory: ?bool = null, shared_memory: ?bool = null, test_evented_io: bool = false, - debug_format: ?Config.DebugFormat = null, + debug_format: ?DebugFormat = null, dll_export_fns: ?bool = null, rdynamic: ?bool = null, };