From 9f9fc723dc8eb3157d213e0e251773f39fb08395 Mon Sep 17 00:00:00 2001 From: Squareys Date: Sun, 18 Oct 2015 18:21:22 +0200 Subject: [PATCH] Audio: Fix Playable.h not included in PlayableGroup.h. When PlayableGroup.h is used without Playable.h, the compiler spits out a very unintuitive error message, which would probably confuse unfamiliar users. This change fixes that error message appearing. Signed-off-by: Squareys --- src/Magnum/Audio/PlayableGroup.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Magnum/Audio/PlayableGroup.h b/src/Magnum/Audio/PlayableGroup.h index a489a3b6e..0d643e63e 100644 --- a/src/Magnum/Audio/PlayableGroup.h +++ b/src/Magnum/Audio/PlayableGroup.h @@ -39,6 +39,7 @@ #include #include "Magnum/Audio/Audio.h" +#include "Magnum/Audio/Playable.h" #include "Magnum/Audio/Source.h" #include "Magnum/Audio/visibility.h"