diff options
author | Max Kellermann <max@musicpd.org> | 2017-12-30 17:47:08 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-12-30 17:47:16 +0100 |
commit | de0c3e717e82508499ae572cfdf7423a3e36259b (patch) | |
tree | 267977e8998a1fb00e1880e9a28c02621326de18 /src/MusicChunk.cxx | |
parent | 1194998ce949c5a98431103dd90e3f71271ee70f (diff) |
MusicChunk: split struct MusicChunkInfo from struct MusicChunk
Diffstat (limited to 'src/MusicChunk.cxx')
-rw-r--r-- | src/MusicChunk.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/MusicChunk.cxx b/src/MusicChunk.cxx index 9f33e9af5..5953196fd 100644 --- a/src/MusicChunk.cxx +++ b/src/MusicChunk.cxx @@ -24,12 +24,12 @@ #include <assert.h> -MusicChunk::MusicChunk() noexcept = default; -MusicChunk::~MusicChunk() noexcept = default; +MusicChunkInfo::MusicChunkInfo() noexcept = default; +MusicChunkInfo::~MusicChunkInfo() noexcept = default; #ifndef NDEBUG bool -MusicChunk::CheckFormat(const AudioFormat other_format) const noexcept +MusicChunkInfo::CheckFormat(const AudioFormat other_format) const noexcept { assert(other_format.IsValid()); |