From 8fd01685d5d57fc35c4274176be382ad33035528 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Sun, 14 Dec 2025 22:12:55 +0100 Subject: Allow asan:reserve to receive an usize MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This allows for reserving memory regions which go outside of the page boundary. Signed-off-by: Miquel Sabaté Solà --- lib/xixanta/src/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/xixanta/src/node.rs') diff --git a/lib/xixanta/src/node.rs b/lib/xixanta/src/node.rs index 465dde2..65bc09e 100644 --- a/lib/xixanta/src/node.rs +++ b/lib/xixanta/src/node.rs @@ -259,7 +259,7 @@ pub enum OperationType { #[derive(Debug, Clone, PartialEq)] pub enum CommentType { - AsanReserve(u8), + AsanReserve(usize), AsanIgnore, } -- cgit v1.2.3