From 96ff6b9b8b2486392781bf79e29b0d6c20159ed0 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 16 Jun 2019 12:23:38 +0200 Subject: [PATCH] pcm/Dop: remove redundant `inline` keywords --- src/pcm/Dop.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/pcm/Dop.cxx b/src/pcm/Dop.cxx index 671abd2e6..1cd55ffc1 100644 --- a/src/pcm/Dop.cxx +++ b/src/pcm/Dop.cxx @@ -24,15 +24,13 @@ #include -constexpr -static inline uint32_t +static constexpr uint32_t pcm_two_dsd_to_dop_marker1(uint8_t a, uint8_t b) noexcept { return 0xff050000 | (a << 8) | b; } -constexpr -static inline uint32_t +static constexpr uint32_t pcm_two_dsd_to_dop_marker2(uint8_t a, uint8_t b) noexcept { return 0xfffa0000 | (a << 8) | b;