From 1e9d7ed7d313aab2ab0984d56e1f370b0ebf9241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20S=C3=A1nchez?= Date: Fri, 29 Aug 2025 17:19:28 +0000 Subject: [PATCH] Add missing semicolon to `has_fma` definitions to fix GPU builds. --- Eigen/src/Core/MathFunctions.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Eigen/src/Core/MathFunctions.h b/Eigen/src/Core/MathFunctions.h index 44b16be54..ee62f01b8 100644 --- a/Eigen/src/Core/MathFunctions.h +++ b/Eigen/src/Core/MathFunctions.h @@ -976,8 +976,7 @@ struct fma_impl::value>> { #if defined(EIGEN_GPUCC) template <> -struct has_fma : public true_type { -} +struct has_fma : public true_type {}; template <> struct fma_impl { @@ -987,8 +986,7 @@ struct fma_impl { }; template <> -struct has_fma : public true_type { -} +struct has_fma : public true_type {}; template <> struct fma_impl {