1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-12-03 10:07:45 +01:00

Fix build with C++20.

This commit is contained in:
John Preston 2020-01-21 15:15:45 +03:00
parent debda1aa5e
commit ed9ac136d1

View File

@ -54,8 +54,6 @@ const uint32_t kFmtSubchunkSize = sizeof(FmtSubchunk) - sizeof(ChunkHeader);
// Simple wav header. It does not include chunks that are not essential to read
// audio samples.
struct WavHeader {
WavHeader(const WavHeader&) = default;
WavHeader& operator=(const WavHeader&) = default;
RiffHeader riff;
FmtSubchunk fmt;
struct {