Skip to content

Commit

Permalink
fix: rm memory safe marker
Browse files Browse the repository at this point in the history
  • Loading branch information
xenide committed Dec 11, 2024
1 parent 5235ab1 commit 82c5f1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StdCheats.sol
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ abstract contract StdCheatsSafe {

function assumeEmptyAddress(address addr) internal view virtual {
uint256 size;
assembly ("memory-safe") {
assembly {
size := extcodesize(addr)
}
vm.assume(size == 0);
Expand Down

0 comments on commit 82c5f1b

Please sign in to comment.