From: Marek Safar Date: Thu, 27 Jul 2017 08:38:15 +0000 (+0200) Subject: [mcs] Another workaround for enum builder SRE crash (this time on Mono) X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;ds=sidebyside;h=9c7b4038d3243cfc48eb5eb9b7f910677f2efdc5;p=mono.git [mcs] Another workaround for enum builder SRE crash (this time on Mono) --- diff --git a/mcs/mcs/enum.cs b/mcs/mcs/enum.cs index 8a288402330..f124338ba55 100644 --- a/mcs/mcs/enum.cs +++ b/mcs/mcs/enum.cs @@ -42,6 +42,12 @@ namespace Mono.CSharp { return underlyingType; } + + public override Type UnderlyingSystemType { + get { + return underlyingType; + } + } } #endif