Merge pull request #7179 from ethereum/fix-gcc-9-errors

Fix gcc9 errors
This commit is contained in:
Daniel Kirchner 2019-08-06 13:23:04 +02:00 committed by GitHub
commit 4182033264
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,13 +119,6 @@ struct ABIType
size_t _size = 32
): type(_type), align(_align), size(_size) {}
ABIType(ABIType const& _other):
type(_other.type),
align(_other.align),
size(_other.size),
alignDeclared(_other.alignDeclared)
{}
Type type = ABIType::None;
Align align = ABIType::AlignRight;
size_t size = 32;