ethereum / aleth

Aleth – Ethereum C++ client, tools and libraries
GNU General Public License v3.0
3.96k stars 2.18k forks source link

HashedExpression class needs null check or variable needs default value. #5916

Open Patrick-Gourdet opened 3 years ago

Patrick-Gourdet commented 3 years ago

`// An expression with a cached hash value

struct HashedExpression {

Expression* expr; // This variable was throwing an error on build. size_t hash = 0; // I just initialized it to 0 but a null check would be more elegant. `