consistent use of struct for traits

This commit is contained in:
Michael Hemmer 2008-04-28 08:20:30 +00:00
parent 445ffdb4f3
commit 7d2514e5da
1 changed files with 2 additions and 2 deletions

View File

@ -135,9 +135,9 @@ struct Coercion_traits_for_level
namespace INTERN_CT{
// Coercion_traits for Sqrt_extenison to FieldWithSqrt
template <class A, class B> class CT_ext_to_fwsqrt;
template <class A, class B> struct CT_ext_to_fwsqrt;
// Coercion_traits for Sqrt_extenison not with FieldWithSqrt
template <class A, class B> class CT_ext_not_to_fwsqrt;
template <class A, class B> struct CT_ext_not_to_fwsqrt;
} // namespace INTERN_CT