From 7b1f9c366e1c26c11c9f61920f21200ac09c59c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 20 Oct 2013 22:40:02 +0200 Subject: [PATCH] Don't forward-declare struct as class. Spotted by Clang. --- src/Plugins/MagnumFont/MagnumFont.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugins/MagnumFont/MagnumFont.h b/src/Plugins/MagnumFont/MagnumFont.h index 760eef1f7..87126e6f2 100644 --- a/src/Plugins/MagnumFont/MagnumFont.h +++ b/src/Plugins/MagnumFont/MagnumFont.h @@ -102,7 +102,7 @@ class MagnumFont: public AbstractFont { ~MagnumFont(); private: - class Data; + struct Data; Features doFeatures() const override;