fix unecessary parens in macro

This commit is contained in:
Skgland
2025-11-20 21:24:47 +01:00
committed by Bennet Bleßmann
parent e90c813528
commit a05dc79505

View File

@@ -484,6 +484,6 @@ macro_rules! heap_index {
macro_rules! cell_index { macro_rules! cell_index {
($idx:expr) => { ($idx:expr) => {
(($idx) / std::mem::size_of::<HeapCellValue>()) ($idx) / std::mem::size_of::<HeapCellValue>()
}; };
} }