mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
std.valgrind.callgrind: fix string type
Fixes the error when using std.vallgrind.callgrind: error: expected type '[2]u8', found '*const [2:0]u8'
This commit is contained in:
parent
6c020cdb76
commit
24d718e7eb
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ const std = @import("../std.zig");
|
||||||
const valgrind = std.valgrind;
|
const valgrind = std.valgrind;
|
||||||
|
|
||||||
pub const CallgrindClientRequest = enum(usize) {
|
pub const CallgrindClientRequest = enum(usize) {
|
||||||
DumpStats = valgrind.ToolBase("CT"),
|
DumpStats = valgrind.ToolBase("CT".*),
|
||||||
ZeroStats,
|
ZeroStats,
|
||||||
ToggleCollect,
|
ToggleCollect,
|
||||||
DumpStatsAt,
|
DumpStatsAt,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue