From aaec4e3f1cdb8f45d35a16a46324b10408e0b787 Mon Sep 17 00:00:00 2001 From: Alex Bilger Date: Fri, 10 Jan 2025 08:40:44 +0100 Subject: [PATCH] parentheses --- Sofa/framework/Type/src/sofa/type/trait/Rebind.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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>;