diff --git a/libs/glfw/src/Window.zig b/libs/glfw/src/Window.zig index 0f6f4651..bea54ab4 100644 --- a/libs/glfw/src/Window.zig +++ b/libs/glfw/src/Window.zig @@ -699,7 +699,8 @@ pub const SizeOptional = struct { /// @thread_safety This function must only be called from the main thread. /// /// see also: window_sizelimits, glfw.Window.setAspectRatio -pub inline fn setSizeLimits(self: Window, min: SizeOptional, max: SizeOptional) error{PlatformError}!void { +// TODO(self-hosted): make inline fn again, once https://github.com/ziglang/zig/issues/13164 is fixed. +pub fn setSizeLimits(self: Window, min: SizeOptional, max: SizeOptional) error{PlatformError}!void { internal_debug.assertInitialized(); if (min.width != null and max.width != null) {