Patch
- Older MSVC versions had problems compiling benri due to template specialization
instantiation issues. (For a proper resolution MSVC would have needed to expand certain
template but did not.) - Fixed by adding
decltype(T{})
inside the specializations. - Made the
is_convertible_into
more general. (It now removesconst
andvolatile
before type comparison.)