From 0e04e49de4932e8f3b8e52ab15978eb9ab965a37 Mon Sep 17 00:00:00 2001 From: Marco Iannaccone Date: Fri, 12 Jun 2026 23:08:53 +0200 Subject: [PATCH] Use typed integer literal so Linux builds under strict overload resolution --- Src/Platform.rux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/Platform.rux b/Src/Platform.rux index c15438d..d4bcc53 100644 --- a/Src/Platform.rux +++ b/Src/Platform.rux @@ -95,7 +95,7 @@ module Platform { } func Zero(ptr: *opaque, size: uint) { - Fill(ptr, size, 0); + Fill(ptr, size, 0i32); } func Compare(lhs: *const opaque, rhs: *const opaque, length: uint) -> uint {