my ide is vs(can find solc version is 0.4.17),but my solcjs is 0.4.24.when I run this simple code
`pragma solidity^ 0.4.45;
contract test{
function multiply(uint a) constant returns(uint d){
return a*7;
}
}
there is warning "security/enforce-explicit-visibility: No visibility specified explicitly for multiply function."
When I run another simple code a warning come with "[solc] Function state mutability can be restricted to pure".
Is there some wrong with version conflict about solc/solcjs? How I solve it?