Browse Source

GCC 4.8 compilation fixes.

pull/278/head
Vladimír Vondruš 13 years ago
parent
commit
bba3755da1
  1. 2
      src/Math/Algorithms/Svd.h

2
src/Math/Algorithms/Svd.h

@ -49,7 +49,7 @@ template<class T> T pythagoras(T a, T b) {
return absb*std::sqrt(T(1) + Math::pow<2>(absa/absb));
}
template<class T> T smallestDelta();
template<class T> constexpr T smallestDelta();
template<> inline constexpr Float smallestDelta<Float>() { return 1.0e-32; }
#ifndef MAGNUM_TARGET_GLES
template<> inline constexpr Double smallestDelta<Double>() { return 1.0e-64; }

Loading…
Cancel
Save