MusicChunk: add missing include
This commit is contained in:
parent
950888d161
commit
4beedec3ad
|
@ -1,8 +1,7 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
// Copyright The Music Player Daemon Project
|
// Copyright The Music Player Daemon Project
|
||||||
|
|
||||||
#ifndef MPD_MUSIC_CHUNK_HXX
|
#pragma once
|
||||||
#define MPD_MUSIC_CHUNK_HXX
|
|
||||||
|
|
||||||
#include "MusicChunkPtr.hxx"
|
#include "MusicChunkPtr.hxx"
|
||||||
#include "Chrono.hxx"
|
#include "Chrono.hxx"
|
||||||
|
@ -12,6 +11,7 @@
|
||||||
#include "pcm/AudioFormat.hxx"
|
#include "pcm/AudioFormat.hxx"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <array>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
@ -130,5 +130,3 @@ struct MusicChunk : MusicChunkInfo {
|
||||||
};
|
};
|
||||||
|
|
||||||
static_assert(sizeof(MusicChunk) == CHUNK_SIZE, "Wrong size");
|
static_assert(sizeof(MusicChunk) == CHUNK_SIZE, "Wrong size");
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
Loading…
Reference in New Issue