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: Ia58a3b4f3becf9e620d3991da8451d81f32f8ad0 Reviewed-on: https://webrtc-review.googlesource.com/90406 Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Steve Anton <steveanton@webrtc.org> Commit-Queue: Steve Anton <steveanton@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24118}
22 lines
640 B
C++
22 lines
640 B
C++
/*
|
|
* Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "api/call/transport.h"
|
|
|
|
namespace webrtc {
|
|
|
|
PacketOptions::PacketOptions() = default;
|
|
|
|
PacketOptions::PacketOptions(const PacketOptions&) = default;
|
|
|
|
PacketOptions::~PacketOptions() = default;
|
|
|
|
} // namespace webrtc
|