evmcheb / solarray

A blazing-fast helper library for convenient Solidity dynamic arrays

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Warning: Source file does not specify required compiler version!

PaulRBerg opened this issue · comments

I installed solarray in my repo and started using it, but then I received this warning:

warning[3420]: Warning: Source file does not specify required compiler version! Consider adding "pragma solidity ^0.8.17;"
--> lib/solarray/src/Solarray.sol

I noticed that you removed the pragma in 84d0d14 - why is that?

I think that this repo should use a wide pragma like forge-std does:

pragma solidity >=0.6.2 <0.9.0;