Skip to content

Commit 04ad7eb

Browse files
committed
[WebRTC] Fix build with GCC 9
1 parent f1276f1 commit 04ad7eb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Source/WebCore/Modules/mediastream/RTCSctpTransportBackend.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ inline bool operator==(const RTCSctpTransportBackend& a, const RTCSctpTransportB
5454
return a.backend() == b.backend();
5555
}
5656

57+
inline bool operator!=(const RTCSctpTransportBackend& a, const RTCSctpTransportBackend& b)
58+
{
59+
return !(a == b);
60+
}
61+
5762
} // namespace WebCore
5863

5964
#endif // ENABLE(WEB_RTC)

0 commit comments

Comments
 (0)