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

@ -24,7 +24,7 @@ class CommonHeader;
class Bye : public RtcpPacket {
public:
static const uint8_t kPacketType = 203;
static constexpr uint8_t kPacketType = 203;
Bye();
~Bye() override {}