Skip to content

Commit 82c5f1b

Browse files
committed
fix: rm memory safe marker
1 parent 5235ab1 commit 82c5f1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/StdCheats.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ abstract contract StdCheatsSafe {
351351

352352
function assumeEmptyAddress(address addr) internal view virtual {
353353
uint256 size;
354-
assembly ("memory-safe") {
354+
assembly {
355355
size := extcodesize(addr)
356356
}
357357
vm.assume(size == 0);

0 commit comments

Comments
 (0)