X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Runtime.CompilerServices%2FMethodImplAttribute.cs;h=afb691b15ac9e2efbdfe6376f80a6979513e54e5;hb=95dc3521c07b15316c0087fb5f088e65162077e4;hp=8351de40297f9866da8ee4160732464fd323f150;hpb=c4aef31eeea309e6a795c84c098ac8e1a2490340;p=mono.git diff --git a/mcs/class/corlib/System.Runtime.CompilerServices/MethodImplAttribute.cs b/mcs/class/corlib/System.Runtime.CompilerServices/MethodImplAttribute.cs index 8351de40297..afb691b15ac 100644 --- a/mcs/class/corlib/System.Runtime.CompilerServices/MethodImplAttribute.cs +++ b/mcs/class/corlib/System.Runtime.CompilerServices/MethodImplAttribute.cs @@ -47,14 +47,14 @@ namespace System.Runtime.CompilerServices { { } - public MethodImplAttribute (short options) + public MethodImplAttribute (short value) { - _val = (MethodImplOptions) options; + _val = (MethodImplOptions) value; } - public MethodImplAttribute (MethodImplOptions options) + public MethodImplAttribute (MethodImplOptions methodImplOptions) { - _val = options; + _val = methodImplOptions; } public MethodCodeType MethodCodeType;