Browse Source

Math: minor cleanup.

pull/297/head
Vladimír Vondruš 8 years ago
parent
commit
ff57f95e99
  1. 2
      src/Magnum/Math/CubicHermite.h

2
src/Magnum/Math/CubicHermite.h

@ -186,7 +186,7 @@ template<class T> class CubicHermite {
constexpr explicit CubicHermite(ZeroInitT, void*) noexcept: _inTangent{T(0)}, _point{T(0)}, _outTangent{T(0)} {}
/* Called from CubicHermite(NoInit), either using the NoInit
constructor (if available) or not doing oanything */
constructor (if available) or not doing anything */
explicit CubicHermite(NoInitT, NoInitT*) noexcept: _inTangent{NoInit}, _point{NoInit}, _outTangent{NoInit} {}
explicit CubicHermite(NoInitT, void*) noexcept {}

Loading…
Cancel
Save