zig-lys/src/util/utils.zig

12 lines
243 B
Zig
Raw Normal View History

2024-12-07 02:19:02 +00:00
const str = @import("./smartString.zig");
2024-12-07 02:28:10 +00:00
pub const SmartString = str.SmartString;
2024-12-06 06:48:35 +00:00
comptime {
const std = @import("std");
const builtin = @import("builtin");
if (builtin.is_test) {
std.mem.doNotOptimizeAway(str);
}
}