File tree Expand file tree Collapse file tree
tests/monotouch-test/ObjCRuntime Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public void GetConstant ()
3636 foreach ( var enumValue in Enum . GetValuesAsUnderlyingType ( type ) ) {
3737 var obj = getConstant . Invoke ( null , new object [ ] { enumValue } ) ;
3838
39- if ( valuesToSkip . Remove ( ( type , ( int ) enumValue ) ) )
39+ if ( valuesToSkip . Remove ( ( type , enumValue ) ) )
4040 continue ;
4141
4242 if ( obj is not null ) {
@@ -52,9 +52,9 @@ public void GetConstant ()
5252 } ) ;
5353 }
5454
55- ( Type EnumType , int UnderlyingValue ) [ ] GetSkippedEnumValues ( )
55+ ( Type EnumType , object UnderlyingValue ) [ ] GetSkippedEnumValues ( )
5656 {
57- var rv = new List < ( Type EnumType , int UnderlyingValue ) > ( ) {
57+ var rv = new List < ( Type EnumType , object UnderlyingValue ) > ( ) {
5858#if ! XAMCORE_5_0
5959 ( typeof ( global ::AVFoundation . AVCaptureDeviceType ) , ( int ) global ::AVFoundation . AVCaptureDeviceType . BuiltInDualCamera ) ,
6060#if __MACOS__
You can’t perform that action at this time.
0 commit comments