[ox] Add optional typename to satisfy clangd

(synced from ade6af8698)
This commit is contained in:
2023-12-09 00:49:37 -06:00
parent f9e0be6bdf
commit eac0ce666d
+1 -1
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;
}