[ox] Add optional typename to satisfy clangd

This commit is contained in:
Gary Talent 2023-12-09 00:49:37 -06:00
parent cd0958c691
commit ade6af8698

View File

@ -109,7 +109,7 @@ struct MaybeSV<T, true> {
using type = ox::StringView;
};
template<typename T>
using MaybeSV_t = MaybeSV<T>::type;
using MaybeSV_t = typename MaybeSV<T>::type;
}