Fix -Wextra-semi warnings.
Starting from https://chromium-review.googlesource.com/c/1485012, -Wextra-semi is enabled and WebRTC has some violations to fix. This is a follow-up of https://webrtc-review.googlesource.com/c/123560. Bug: webrtc:10355 Change-Id: I012b7497fc8991037fd77aa98f1579c22e08206f Reviewed-on: https://webrtc-review.googlesource.com/c/124126 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26831}
This commit is contained in:
committed by
Commit Bot
parent
3812fa949a
commit
c4dd730765
@ -49,7 +49,7 @@ class RTCChildStats : public RTCStats {
|
||||
RTCStatsMember<int32_t> child_int;
|
||||
};
|
||||
|
||||
WEBRTC_RTCSTATS_IMPL(RTCChildStats, RTCStats, "child-stats", &child_int);
|
||||
WEBRTC_RTCSTATS_IMPL(RTCChildStats, RTCStats, "child-stats", &child_int)
|
||||
|
||||
class RTCGrandChildStats : public RTCChildStats {
|
||||
public:
|
||||
@ -64,7 +64,7 @@ class RTCGrandChildStats : public RTCChildStats {
|
||||
WEBRTC_RTCSTATS_IMPL(RTCGrandChildStats,
|
||||
RTCChildStats,
|
||||
"grandchild-stats",
|
||||
&grandchild_int);
|
||||
&grandchild_int)
|
||||
|
||||
TEST(RTCStatsTest, RTCStatsAndMembers) {
|
||||
RTCTestStats stats("testId", 42);
|
||||
|
||||
Reference in New Issue
Block a user