Skip to content

Commit

Permalink
[WebRTC] Fix build with GCC 9
Browse files Browse the repository at this point in the history
  • Loading branch information
cadubentzen committed Aug 16, 2024
1 parent f1276f1 commit 04ad7eb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Source/WebCore/Modules/mediastream/RTCSctpTransportBackend.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ inline bool operator==(const RTCSctpTransportBackend& a, const RTCSctpTransportB
return a.backend() == b.backend();
}

inline bool operator!=(const RTCSctpTransportBackend& a, const RTCSctpTransportBackend& b)
{
return !(a == b);
}

} // namespace WebCore

#endif // ENABLE(WEB_RTC)

0 comments on commit 04ad7eb

Please sign in to comment.