Browse Source

Treat Corrade as real, not some internal dependency in #includes.

pull/279/head
Vladimír Vondruš 14 years ago
parent
commit
db8cb9119b
  1. 2
      src/Math/Vector.h
  2. 2
      src/MeshTools/Clean.h
  3. 2
      src/MeshTools/Subdivide.h
  4. 2
      src/MeshTools/Test/CompressIndicesTest.cpp
  5. 1
      src/Physics/Test/SphereTest.cpp
  6. 2
      src/Shaders/PhongShader.cpp
  7. 3
      src/Trade/AbstractImporter.h

2
src/Math/Vector.h

@ -20,8 +20,8 @@
*/ */
#include <cmath> #include <cmath>
#include <Utility/Debug.h>
#include "Utility/Debug.h"
#include "MathTypeTraits.h" #include "MathTypeTraits.h"
namespace Magnum { namespace Math { namespace Magnum { namespace Math {

2
src/MeshTools/Clean.h

@ -21,8 +21,8 @@
#include <unordered_map> #include <unordered_map>
#include <limits> #include <limits>
#include <Utility/MurmurHash2.h>
#include "Utility/MurmurHash2.h"
#include "TypeTraits.h" #include "TypeTraits.h"
namespace Magnum { namespace MeshTools { namespace Magnum { namespace MeshTools {

2
src/MeshTools/Subdivide.h

@ -20,7 +20,7 @@
*/ */
#include <vector> #include <vector>
#include "Utility/Debug.h" #include <Utility/Debug.h>
namespace Magnum { namespace MeshTools { namespace Magnum { namespace MeshTools {

2
src/MeshTools/Test/CompressIndicesTest.cpp

@ -16,8 +16,8 @@
#include "CompressIndicesTest.h" #include "CompressIndicesTest.h"
#include <QtTest/QTest> #include <QtTest/QTest>
#include <Utility/Endianness.h>
#include "Utility/Endianness.h"
#include "MeshTools/CompressIndices.h" #include "MeshTools/CompressIndices.h"
QTEST_APPLESS_MAIN(Magnum::MeshTools::Test::CompressIndicesTest) QTEST_APPLESS_MAIN(Magnum::MeshTools::Test::CompressIndicesTest)

1
src/Physics/Test/SphereTest.cpp

@ -16,7 +16,6 @@
#include "SphereTest.h" #include "SphereTest.h"
#include <QtTest/QTest> #include <QtTest/QTest>
#include "Utility/Debug.h"
#include "Physics/Sphere.h" #include "Physics/Sphere.h"

2
src/Shaders/PhongShader.cpp

@ -15,7 +15,7 @@
#include "PhongShader.h" #include "PhongShader.h"
#include "Utility/Resource.h" #include <Utility/Resource.h>
namespace Magnum { namespace Shaders { namespace Magnum { namespace Shaders {

3
src/Trade/AbstractImporter.h

@ -19,7 +19,8 @@
* @brief Class Magnum::Trade::AbstractImporter * @brief Class Magnum::Trade::AbstractImporter
*/ */
#include "PluginManager/Plugin.h" #include <PluginManager/Plugin.h>
#include "ImageData.h" #include "ImageData.h"
#include "Set.h" #include "Set.h"

Loading…
Cancel
Save