encoder/wave: remove `constexpr` because memcpy() is not allowed

This commit is contained in:
Max Kellermann 2021-02-17 14:18:59 +01:00
parent 22804cfbe8
commit 85adefd9a4
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ struct WaveHeader {
static_assert(sizeof(WaveHeader) == 44);
static constexpr WaveHeader
static WaveHeader
MakeWaveHeader(int channels, int bits,
int freq, int block_size) noexcept
{