diff --git a/doc/changelog.dox b/doc/changelog.dox index 3f9425909..4a046f16d 100644 --- a/doc/changelog.dox +++ b/doc/changelog.dox @@ -233,6 +233,9 @@ See also: now return a signed scaling vector instead of unsigned in order to prevent information loss. To restore the old behavior, apply @ref Math::abs() on the result. +- The @ref Magnum/Math/FunctionsBatch.h header is no longer included from + @ref Magnum/Math/Functions.h for backwards compatibility in order to speed + up compile times. - @ref Platform::GlfwApplication::setMinWindowSize() / @ref Platform::GlfwApplication::setMaxWindowSize() and equivalent APIs in @ref Platform::Sdl2Application now premultiply the value with diff --git a/src/Magnum/Math/Functions.h b/src/Magnum/Math/Functions.h index 96a55532c..6270876e9 100644 --- a/src/Magnum/Math/Functions.h +++ b/src/Magnum/Math/Functions.h @@ -658,8 +658,4 @@ template inline Vector sqrtInverted(const Ve }} -#ifdef MAGNUM_BUILD_DEPRECATED -#include "Magnum/Math/FunctionsBatch.h" /** @todo remove once compat is dropped */ -#endif - #endif