Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/AVFoundation/AVAudioChannelLayout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
// Authors:
// Miguel de Icaza (miguel@xamarin.com)
//

// 'AVAudioChannelLayout' defines operator == or operator != but does not override Object.Equals(object o)
#pragma warning disable 0660
// 'AVAudioChannelLayout' defines operator == or operator != but does not override Object.GetHashCode()
#pragma warning disable 0661
// In both of these cases, the NSObject Equals/GetHashCode implementation works fine, so we can ignore these warnings.

using Foundation;
using ObjCRuntime;
using AudioToolbox;
Expand Down
7 changes: 7 additions & 0 deletions src/AVFoundation/AVAudioFormat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
// Authors:
// Miguel de Icaza (miguel@xamarin.com)
//

// 'AVAudioFormat' defines operator == or operator != but does not override Object.Equals(object o)
#pragma warning disable 0660
// 'AVAudioFormat' defines operator == or operator != but does not override Object.GetHashCode()
#pragma warning disable 0661
// In both of these cases, the NSObject Equals/GetHashCode implementation works fine, so we can ignore these warnings.

using Foundation;
using ObjCRuntime;
using System;
Expand Down