From b105550212479858a8e04b7ec2342d4bf0f6f4dd Mon Sep 17 00:00:00 2001 From: Samuel Ayala Date: Wed, 22 May 2024 16:49:58 -0400 Subject: [PATCH] fix typo --- headeronly/linalg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headeronly/linalg.h b/headeronly/linalg.h index cec1700..ae14850 100644 --- a/headeronly/linalg.h +++ b/headeronly/linalg.h @@ -94,7 +94,7 @@ namespace linalg template struct has_type_definition : std::false_type {}; template struct has_type_definition> : std::true_type {}; template struct is_custom_scalar : std::false_type {}; - template struct is_custom_scalar::value && (T::category == Type::Scalar)>> : std::true_type {}; + template struct is_custom_scalar::value && (T::_linalg_type == Type::Scalar)>> : std::true_type {}; // SFINAE helper which is defined if all provided types are scalars struct empty {};