From f3252968757ae9760e83bb37bace515a487e5127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 5 Jun 2014 00:18:18 +0200 Subject: [PATCH] MSVC 2013 compatibility: somehow std::reference_wrapper needs full def. What the hell, again. --- src/Magnum/MeshView.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Magnum/MeshView.h b/src/Magnum/MeshView.h index fc9fcd01c..7a7e0ee48 100644 --- a/src/Magnum/MeshView.h +++ b/src/Magnum/MeshView.h @@ -36,6 +36,10 @@ #include "Magnum/OpenGL.h" #include "Magnum/visibility.h" +#ifdef CORRADE_MSVC2013_COMPATIBILITY +#include "Magnum/Mesh.h" +#endif + namespace Magnum { namespace Implementation { struct MeshState; }