From 13165580d4ac68734cf005483e19be0e30fd64b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 28 Apr 2018 01:25:58 +0200 Subject: [PATCH] Audio: properly hide forward declarations from Doxygen. Slipped through review half a century ago. --- src/Magnum/Audio/Audio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/Audio/Audio.h b/src/Magnum/Audio/Audio.h index b0106b785..caee78de3 100644 --- a/src/Magnum/Audio/Audio.h +++ b/src/Magnum/Audio/Audio.h @@ -39,7 +39,6 @@ class Buffer; class Context; class Source; /* Renderer used only statically */ -#endif template class Playable; typedef Playable<2> Playable2D; @@ -52,6 +51,7 @@ typedef PlayableGroup<3> PlayableGroup3D; template class Listener; typedef Listener<2> Listener2D; typedef Listener<3> Listener3D; +#endif }}