From c638003e8aa684bae60e8b3736c6d9db8571e727 Mon Sep 17 00:00:00 2001 From: Fabrice Date: Sun, 1 Mar 2026 19:10:38 +0100 Subject: fix build --- src/common.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common.cc') diff --git a/src/common.cc b/src/common.cc index 2099e24..aa734b3 100644 --- a/src/common.cc +++ b/src/common.cc @@ -25,7 +25,7 @@ struct Slice { T* ptr; usize length; - slice(T* ptr, usize length) : ptr(ptr), length(length) {} + Slice(T* ptr, usize length) : ptr(ptr), length(length) {} T* operator[](usize index) { return ptr + index; -- cgit v1.2.3