From e8fe82ac28d312e42fea1e273af3eb6018876f5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 12 Jun 2013 15:32:54 +0200 Subject: [PATCH] TgaImporter: don't include these headers if not really needed. --- src/Plugins/TgaImporter/TgaImporter.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Plugins/TgaImporter/TgaImporter.cpp b/src/Plugins/TgaImporter/TgaImporter.cpp index 50dd750a7..b5bda5f66 100644 --- a/src/Plugins/TgaImporter/TgaImporter.cpp +++ b/src/Plugins/TgaImporter/TgaImporter.cpp @@ -26,13 +26,16 @@ #include #include -#include #include #include #include -#include #include +#ifdef MAGNUM_TARGET_GLES +#include +#include +#endif + #include "TgaHeader.h" namespace Magnum { namespace Trade { namespace TgaImporter {