From e4ad0e8e6d6df31c5db26e78ed2cadd99515503e Mon Sep 17 00:00:00 2001 From: Mathias Baumann Date: Tue, 6 Aug 2019 11:47:29 +0200 Subject: [PATCH] Fix gcc9 errors --- test/libsolidity/util/SoltestTypes.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/libsolidity/util/SoltestTypes.h b/test/libsolidity/util/SoltestTypes.h index 075c051a9..0e7a3072c 100644 --- a/test/libsolidity/util/SoltestTypes.h +++ b/test/libsolidity/util/SoltestTypes.h @@ -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;