Libmv: Remove FreeBSD sincos() workaround #108346

Manually merged
Brecht Van Lommel merged 1 commits from Brad-Smith/blender:freebsd_libmv_numeric into main 2023-05-30 14:14:04 +02:00
1 changed files with 2 additions and 2 deletions

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);