diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2025-12-14 22:12:55 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2025-12-14 22:36:24 +0100 |
| commit | 8fd01685d5d57fc35c4274176be382ad33035528 (patch) | |
| tree | b95af92a5d217f71ddde58271da59c218be80495 /lib/xixanta/src/node.rs | |
| parent | c0422cf048c1305ec75ddcfd68b81afb8ec5b3f6 (diff) | |
| download | tools.nes-8fd01685d5d57fc35c4274176be382ad33035528.tar.gz tools.nes-8fd01685d5d57fc35c4274176be382ad33035528.zip | |
Allow asan:reserve to receive an usize
This allows for reserving memory regions which go outside of the page
boundary.
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'lib/xixanta/src/node.rs')
| -rw-r--r-- | lib/xixanta/src/node.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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, } |
