Replace const -> constexpr for rtcp Packet Type

for consistency with other rtcp packet classes.

BUG=webrtc:5260

Review-Url: https://codereview.webrtc.org/2361853002
Cr-Commit-Position: refs/heads/master@{#14648}
This commit is contained in:
danilchap
2016-10-17 02:07:54 -07:00
committed by Commit bot
parent c1f40b7bae
commit 2f255d8d67
10 changed files with 16 additions and 15 deletions

View File

@ -28,7 +28,7 @@ class Sdes : public RtcpPacket {
uint32_t ssrc;
std::string cname;
};
static const uint8_t kPacketType = 202;
static constexpr uint8_t kPacketType = 202;
Sdes();
~Sdes() override;