diff --git a/Sofa/framework/Type/src/sofa/type/trait/Rebind.h b/Sofa/framework/Type/src/sofa/type/trait/Rebind.h index a918427804b..994158d70b8 100644 --- a/Sofa/framework/Type/src/sofa/type/trait/Rebind.h +++ b/Sofa/framework/Type/src/sofa/type/trait/Rebind.h @@ -56,7 +56,7 @@ namespace sofa::type * \tparam _T Type that does NOT have a nested ::rebind_to member */ template class _T, class A, class _OtherType> - requires !CanTypeRebind<_T, _OtherType> + requires (!CanTypeRebind<_T, _OtherType>) struct Rebind<_T, _OtherType> { using to = _T<_OtherType>;