mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
std: back out the StackTrace byval changes
Let's keep passing this thing by pointer
This commit is contained in:
+1
-1
@@ -708,7 +708,7 @@ pub inline fn callMain() u8 {
|
||||
switch (native_os) {
|
||||
.freestanding, .other => {},
|
||||
else => if (@errorReturnTrace()) |trace| {
|
||||
std.debug.dumpStackTrace(trace.*);
|
||||
std.debug.dumpStackTrace(trace);
|
||||
},
|
||||
}
|
||||
return 1;
|
||||
|
||||
Reference in New Issue
Block a user