Update old links to bitbucket to point to gitlab.com

This commit is contained in:
Gael Guennebaud
2019-12-04 10:57:07 +01:00
parent 114a15c66a
commit 8fbe0e4699
3 changed files with 3 additions and 5 deletions

View File

@@ -168,7 +168,7 @@ double sqrt(const double &x)
{
#if EIGEN_COMP_GNUC_STRICT
// This works around a GCC bug generating poor code for _mm_sqrt_pd
// See https://bitbucket.org/eigen/eigen/commits/14f468dba4d350d7c19c9b93072e19f7b3df563b
// See https://gitlab.com/libeigen/eigen/commit/8dca9f97e38970
return internal::pfirst(internal::Packet2d(__builtin_ia32_sqrtsd(_mm_set_sd(x))));
#else
return internal::pfirst(internal::Packet2d(_mm_sqrt_pd(_mm_set_sd(x))));