queue/IdTable: include cleanup

This commit is contained in:
Max Kellermann 2021-11-19 16:03:06 +01:00
parent b0c92e1a34
commit d94e8bd82d
2 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,6 @@
#include "util/Compiler.h"
#include <algorithm>
#include <cassert>
/**

View File

@ -20,6 +20,8 @@
#include "Queue.hxx"
#include "song/DetachedSong.hxx"
#include <algorithm>
Queue::Queue(unsigned _max_length) noexcept
:max_length(_max_length),
items(new Item[max_length]),