Fix gcc9 errors

This commit is contained in:
Mathias Baumann 2019-08-06 11:47:29 +02:00
parent 6ee97d7726
commit e4ad0e8e6d

View File

@ -119,13 +119,6 @@ struct ABIType
size_t _size = 32 size_t _size = 32
): type(_type), align(_align), size(_size) {} ): 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; Type type = ABIType::None;
Align align = ABIType::AlignRight; Align align = ABIType::AlignRight;
size_t size = 32; size_t size = 32;