From 77b26552b1ced81a1fda72148518e59292fdff52 Mon Sep 17 00:00:00 2001 From: chriseth Date: Mon, 7 Aug 2017 12:41:45 +0200 Subject: Allow multi-dimensional arrays in interfaces. --- libsolidity/ast/Types.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/libsolidity/ast/Types.cpp b/libsolidity/ast/Types.cpp index a66ccda5..8950bd75 100644 --- a/libsolidity/ast/Types.cpp +++ b/libsolidity/ast/Types.cpp @@ -1529,8 +1529,6 @@ TypePointer ArrayType::interfaceType(bool _inLibrary) const TypePointer baseExt = m_baseType->interfaceType(_inLibrary); if (!baseExt) return TypePointer(); - if (m_baseType->category() == Category::Array && m_baseType->isDynamicallySized()) - return TypePointer(); if (isDynamicallySized()) return make_shared(DataLocation::Memory, baseExt); -- cgit v1.2.3