mirror of
https://codeberg.org/fairyglade/ly.git
synced 2026-08-25 15:04:20 +02:00
Replace ArrayListUnmanaged with ArrayList
Signed-off-by: AnErrupTion <anerruption@disroot.org>
This commit is contained in:
parent
008d413295
commit
aa00f7c8c7
4 changed files with 4 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
const std = @import("std");
|
||||
const Allocator = std.mem.Allocator;
|
||||
const StringList = std.ArrayListUnmanaged([]const u8);
|
||||
const StringList = std.ArrayList([]const u8);
|
||||
const temporary_allocator = std.heap.page_allocator;
|
||||
const builtin = @import("builtin");
|
||||
const build_options = @import("build_options");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue