aboutsummaryrefslogtreecommitdiff
path: root/cast/streaming/rtcp_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'cast/streaming/rtcp_common.h')
-rw-r--r--cast/streaming/rtcp_common.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/cast/streaming/rtcp_common.h b/cast/streaming/rtcp_common.h
index 25e2c2ed..5fbf5f72 100644
--- a/cast/streaming/rtcp_common.h
+++ b/cast/streaming/rtcp_common.h
@@ -161,10 +161,6 @@ struct PacketNack {
FrameId frame_id;
FramePacketId packet_id;
- // Comparison operators. Define more when you need them!
- // TODO(miu): In C++20, just
- // replace all of this with one operator<=>() definition to get them all for
- // free.
constexpr bool operator==(const PacketNack& other) const {
return frame_id == other.frame_id && packet_id == other.packet_id;
}