Libmv: Remove FreeBSD sincos() workaround

Pull Request: https://projects.blender.org/blender/blender/pulls/108346
This commit is contained in:
Brad Smith
2023-05-27 04:11:24 -04:00
committed by Brecht Van Lommel
parent 292baa2a1d
commit 0711bae5e7

View File

@@ -34,8 +34,8 @@
#include <Eigen/SVD>
#if !defined(__MINGW64__)
# if defined(_WIN32) || defined(__APPLE__) || defined(__FreeBSD__) || \
defined(__NetBSD__) || defined(__HAIKU__)
# if defined(_WIN32) || defined(__APPLE__) || defined(__NetBSD__) || \
defined(__HAIKU__)
inline void sincos(double x, double* sinx, double* cosx) {
*sinx = sin(x);
*cosx = cos(x);