Browse Source

Math: missing includes when building with CORRADE_NO_DEBUG.

pull/332/head
Vladimír Vondruš 7 years ago
parent
commit
7b3110e7f8
  1. 1
      src/Magnum/Math/BoolVector.h
  2. 1
      src/Magnum/Math/Vector.h

1
src/Magnum/Math/BoolVector.h

@ -29,6 +29,7 @@
* @brief Class @ref Magnum::Math::BoolVector
*/
#include <type_traits>
#ifndef CORRADE_NO_DEBUG
#include <Corrade/Utility/Debug.h>
#endif

1
src/Magnum/Math/Vector.h

@ -29,6 +29,7 @@
* @brief Class @ref Magnum::Math::Vector, function @ref Magnum::Math::dot(), @ref Magnum::Math::angle()
*/
#include <utility>
#include <Corrade/Utility/Assert.h>
#ifndef CORRADE_NO_DEBUG
#include <Corrade/Utility/Debug.h>

Loading…
Cancel
Save