[*] Remove redundant typename prefix

This commit is contained in:
Reece Wilson 2023-12-04 20:46:20 +00:00
parent 6bf70a4bcb
commit f3bbefae33

View File

@ -477,7 +477,7 @@ namespace _audetail
template<class T1, class T2>
struct common_type<T1, T2>
: AuConditional<AuIsSame_v<T1,typename AuDecay_t<T1>> && AuIsSame_v<T2, AuDecay_t<T2>>,
: AuConditional<AuIsSame_v<T1, AuDecay_t<T1>> && AuIsSame_v<T2, AuDecay_t<T2>>,
ctdetail::common_type_2_impl<T1, T2>,
common_type<AuDecay_t<T1>, AuDecay_t<T2>>>::type
{};