db/VHelper: include DetachedSong.hxx to fix GCC 9 build failure

GCC 9's libstdc++ is unable to use forward-declared types as
std::vector item because the compiler wants to resolve `noexcept()` on
the item destructor.
This commit is contained in:
Max Kellermann 2019-01-21 14:34:12 +01:00
parent 87635c5268
commit 037bb07d08
2 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,6 @@
*/
#include "VHelper.hxx"
#include "song/DetachedSong.hxx"
#include "song/LightSong.hxx"
#include "song/Filter.hxx"

View File

@ -22,6 +22,7 @@
#include "Visitor.hxx"
#include "Selection.hxx"
#include "song/DetachedSong.hxx"
#include <vector>