You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Solidity gives the following warning when a instruction from a contract has the same name as an instruction in solidity's assembly.
Warning: Variable is shadowed in inline assembly by an instruction of the same name
--> prb-math/contracts/PRBMathUD60x18.sol:75:5:
75 | function div(uint256 x, uint256 y) internal pure returns (uint256 result) {
| ^ (Relevant source part starts here and spans across multiple lines).
Would you accept a pull request that renames all conflicting operations with their full instruction name?
The text was updated successfully, but these errors were encountered:
Solidity gives the following warning when a instruction from a contract has the same name as an instruction in solidity's assembly.
Warning: Variable is shadowed in inline assembly by an instruction of the same name
--> prb-math/contracts/PRBMathUD60x18.sol:75:5:
75 | function div(uint256 x, uint256 y) internal pure returns (uint256 result) {
| ^ (Relevant source part starts here and spans across multiple lines).
Would you accept a pull request that renames all conflicting operations with their full instruction name?
The text was updated successfully, but these errors were encountered: