mirror of
https://github.com/fairyglade/ly.git
synced 2026-06-22 15:31:59 +00:00
Replace ArrayListUnmanaged with ArrayList
Signed-off-by: AnErrupTion <anerruption@disroot.org>
This commit is contained in:
@@ -10,7 +10,7 @@ const CyclableLabel = ly_ui.CyclableLabel;
|
||||
const Session = @import("Session.zig");
|
||||
const SavedUsers = @import("../config/SavedUsers.zig");
|
||||
|
||||
const StringList = std.ArrayListUnmanaged([]const u8);
|
||||
const StringList = std.ArrayList([]const u8);
|
||||
pub const User = struct {
|
||||
name: []const u8,
|
||||
session_index: *usize,
|
||||
|
||||
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user