Remove clang:find_bad_constructs suppression from logging (part 1).
This CL removes //build/config/clang:find_bad_constructs from the suppressed_configs list, which means that clang:find_bad_constructs is now enabled on these translation units. Bug: webrtc:9251, webrtc:163 Change-Id: I443c0c77cef30a3f5712f72ce88db80d1fb29874 Reviewed-on: https://webrtc-review.googlesource.com/96642 Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24567}
This commit is contained in:
committed by
Commit Bot
parent
b267b0e021
commit
55d5ef0048
@ -46,6 +46,9 @@ class ParsedRtcEventLog {
|
||||
friend class RtcEventLogTestHelper;
|
||||
|
||||
public:
|
||||
ParsedRtcEventLog();
|
||||
~ParsedRtcEventLog();
|
||||
|
||||
struct BweProbeClusterCreatedEvent {
|
||||
uint64_t timestamp;
|
||||
uint32_t id;
|
||||
@ -55,6 +58,9 @@ class ParsedRtcEventLog {
|
||||
};
|
||||
|
||||
struct BweProbeResultEvent {
|
||||
BweProbeResultEvent();
|
||||
BweProbeResultEvent(const BweProbeResultEvent&);
|
||||
|
||||
uint64_t timestamp;
|
||||
uint32_t id;
|
||||
absl::optional<uint64_t> bitrate_bps;
|
||||
|
||||
Reference in New Issue
Block a user