Browse Source

GCC 4.5 compatibility: fix includes.

Forgotten in the latest merge.
Vladimír Vondruš 12 years ago
parent
commit
35196b6a49
  1. 4
      src/Magnum/MeshTools/FullScreenTriangle.h
  2. 2
      src/Magnum/Platform/AbstractXApplication.h
  3. 2
      src/Magnum/Platform/GlutApplication.h
  4. 2
      src/Magnum/Trade/MeshData2D.h
  5. 2
      src/Magnum/Trade/MeshData3D.h

4
src/Magnum/MeshTools/FullScreenTriangle.h

@ -34,6 +34,10 @@
#include "Magnum/Magnum.h"
#include "Magnum/MeshTools/visibility.h"
#ifdef CORRADE_GCC45_COMPATIBILITY
#include "Magnum/Version.h"
#endif
namespace Magnum { namespace MeshTools {
/**

2
src/Magnum/Platform/AbstractXApplication.h

@ -42,7 +42,7 @@
#include "Magnum/Math/Vector2.h"
#ifdef CORRADE_GCC45_COMPATIBILITY
#include "Version.h"
#include "Magnum/Version.h"
#endif
namespace Magnum {

2
src/Magnum/Platform/GlutApplication.h

@ -39,7 +39,7 @@
#include <GL/freeglut.h>
#ifdef CORRADE_GCC45_COMPATIBILITY
#include "Version.h"
#include "Magnum/Version.h"
#endif
namespace Magnum {

2
src/Magnum/Trade/MeshData2D.h

@ -34,7 +34,7 @@
#include "Magnum/visibility.h"
#ifdef CORRADE_GCC45_COMPATIBILITY
#include "Mesh.h"
#include "Magnum/Mesh.h"
#endif
namespace Magnum { namespace Trade {

2
src/Magnum/Trade/MeshData3D.h

@ -34,7 +34,7 @@
#include "Magnum/visibility.h"
#ifdef CORRADE_GCC45_COMPATIBILITY
#include "Mesh.h"
#include "Magnum/Mesh.h"
#endif
namespace Magnum { namespace Trade {

Loading…
Cancel
Save