Bug 1884022 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

When building with --enable-project=mobile/ios --enable-warnings-as-errors:
```
 0:04.56 /tmp/gecko-ios/widget/uikit/nsWindow.mm:113:30: error: method parameter type 'NSSet *' does not match super class method parameter type 'NSSet<UITouch *> *' [-Werror,-Wsuper-class-method-mismatch]
 0:04.56   113 | - (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event;
 0:04.56       |                              ^
 0:04.56 /tmp/gecko/iPhoneOS17.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h:85:1: note: previous declaration is here
 0:04.56    85 | - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event;
 0:04.56       | ^
 0:04.57 /tmp/gecko-ios/widget/uikit/nsWindow.mm:114:34: error: method parameter type 'NSSet *' does not match super class method parameter type 'NSSet<UITouch *> *' [-Werror,-Wsuper-class-method-mismatch]
 0:04.57   114 | - (void)touchesCancelled:(NSSet*)touches withEvent:(UIEvent*)event;
 0:04.57       |                                  ^
 0:04.57 /tmp/gecko/iPhoneOS17.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h:88:1: note: previous declaration is here
 0:04.57    88 | - (void)touchesCancelled:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event;
 0:04.57       | ^
 0:04.57 /tmp/gecko-ios/widget/uikit/nsWindow.mm:115:30: error: method parameter type 'NSSet *' does not match super class method parameter type 'NSSet<UITouch *> *' [-Werror,-Wsuper-class-method-mismatch]
 0:04.57   115 | - (void)touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event;
 0:04.57       |                              ^
 0:04.57 /tmp/gecko/iPhoneOS17.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h:87:1: note: previous declaration is here
 0:04.57    87 | - (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event;
 0:04.57       | ^
 0:04.57 /tmp/gecko-ios/widget/uikit/nsWindow.mm:116:30: error: method parameter type 'NSSet *' does not match super class method parameter type 'NSSet<UITouch *> *' [-Werror,-Wsuper-class-method-mismatch]
 0:04.58   116 | - (void)touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event;
 0:04.58       |                              ^
 0:04.58 /tmp/gecko/iPhoneOS17.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h:86:1: note: previous declaration is here
 0:04.58    86 | - (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event;
 0:04.58       | ^
 0:04.58 /tmp/gecko-ios/widget/uikit/nsWindow.mm:143:11: warning: 'CAEAGLLayer' is deprecated: first deprecated in iOS 12.0 - OpenGLES is deprecated [-Wdeprecated-declarations]
 0:04.58   143 |   return [CAEAGLLayer class];
 0:04.58       |           ^
 0:04.58 /tmp/gecko/iPhoneOS17.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h:24:12: note: 'CAEAGLLayer' has been explicitly marked deprecated here
 0:04.58    24 | @interface CAEAGLLayer : CALayer <EAGLDrawable>
 0:04.58       |            ^
 0:04.58 /tmp/gecko-ios/widget/uikit/nsWindow.mm:262:15: error: receiver type 'void *' is not 'id' or interface pointer, consider casting it to 'id' [-Werror,-Wreceiver-expr]
 0:04.58   262 |     int id = [value intValue];
 0:04.58       |               ^~~~~
 0:04.58 /tmp/gecko-ios/widget/uikit/nsWindow.mm:275:43: error: cast to 'void *' from smaller integer type 'int' [-Werror,-Wint-to-void-pointer-cast]
 0:04.58   275 |     CFDictionaryAddValue(mTouches, touch, (void*)mNextTouchID);
 0:04.58       |                                           ^~~~~~~~~~~~~~~~~~~
```
When building with --enable-project=mobile/ios --enable-warnings-as-errors:
```
 0:04.56 /tmp/gecko-ios/widget/uikit/nsWindow.mm:113:30: error: method parameter type 'NSSet *' does not match super class method parameter type 'NSSet<UITouch *> *' [-Werror,-Wsuper-class-method-mismatch]
 0:04.56   113 | - (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event;
 0:04.56       |                              ^
 0:04.56 /tmp/gecko/iPhoneOS17.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h:85:1: note: previous declaration is here
 0:04.56    85 | - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event;
 0:04.56       | ^
 0:04.57 /tmp/gecko-ios/widget/uikit/nsWindow.mm:114:34: error: method parameter type 'NSSet *' does not match super class method parameter type 'NSSet<UITouch *> *' [-Werror,-Wsuper-class-method-mismatch]
 0:04.57   114 | - (void)touchesCancelled:(NSSet*)touches withEvent:(UIEvent*)event;
 0:04.57       |                                  ^
 0:04.57 /tmp/gecko/iPhoneOS17.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h:88:1: note: previous declaration is here
 0:04.57    88 | - (void)touchesCancelled:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event;
 0:04.57       | ^
 0:04.57 /tmp/gecko-ios/widget/uikit/nsWindow.mm:115:30: error: method parameter type 'NSSet *' does not match super class method parameter type 'NSSet<UITouch *> *' [-Werror,-Wsuper-class-method-mismatch]
 0:04.57   115 | - (void)touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event;
 0:04.57       |                              ^
 0:04.57 /tmp/gecko/iPhoneOS17.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h:87:1: note: previous declaration is here
 0:04.57    87 | - (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event;
 0:04.57       | ^
 0:04.57 /tmp/gecko-ios/widget/uikit/nsWindow.mm:116:30: error: method parameter type 'NSSet *' does not match super class method parameter type 'NSSet<UITouch *> *' [-Werror,-Wsuper-class-method-mismatch]
 0:04.58   116 | - (void)touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event;
 0:04.58       |                              ^
 0:04.58 /tmp/gecko/iPhoneOS17.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h:86:1: note: previous declaration is here
 0:04.58    86 | - (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event;
 0:04.58       | ^
 0:04.58 /tmp/gecko-ios/widget/uikit/nsWindow.mm:262:15: error: receiver type 'void *' is not 'id' or interface pointer, consider casting it to 'id' [-Werror,-Wreceiver-expr]
 0:04.58   262 |     int id = [value intValue];
 0:04.58       |               ^~~~~
 0:04.58 /tmp/gecko-ios/widget/uikit/nsWindow.mm:275:43: error: cast to 'void *' from smaller integer type 'int' [-Werror,-Wint-to-void-pointer-cast]
 0:04.58   275 |     CFDictionaryAddValue(mTouches, touch, (void*)mNextTouchID);
 0:04.58       |                                           ^~~~~~~~~~~~~~~~~~~
```

Back to Bug 1884022 Comment 0