std: back out the StackTrace byval changes

Let's keep passing this thing by pointer
This commit is contained in:
Andrew Kelley
2025-10-21 04:40:44 -07:00
parent 4ed74a9f8a
commit aadd8d4a3e
6 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -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;