Skip to content

Commit

Permalink
chore: pop_address should use crate scope (#1410)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakita authored May 13, 2024
1 parent 919aae5 commit 4666bd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/interpreter/src/instructions/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,10 @@ macro_rules! resize_memory {
#[macro_export]
macro_rules! pop_address {
($interp:expr, $x1:ident) => {
pop_address_ret!($interp, $x1, ())
$crate::pop_address_ret!($interp, $x1, ())
};
($interp:expr, $x1:ident, $x2:ident) => {
pop_address_ret!($interp, $x1, $x2, ())
$crate::pop_address_ret!($interp, $x1, $x2, ())
};
}

Expand Down

0 comments on commit 4666bd3

Please sign in to comment.