EOSIO / eosio.cdt

EOSIO.CDT (Contract Development Toolkit) is a suite of tools used to build EOSIO contracts
http://eosio.github.io/eosio.cdt
MIT License
511 stars 288 forks source link

Replace int8[] in vector/set/deque/list<char/int8/uint8> with bytes #1227

Closed softprofe closed 2 years ago

softprofe commented 2 years ago

vector/set/deque/list<char/int8/uint8> should be "bytes" not int8[]. This is a special case only for this type. add_explicit_nested_type failed to take care this special builtin type, now by shift the order of judgement of builtin type and explicit_container to deal builtin type first then fixed it.

Change Description

API Changes

Documentation Additions