[ox/std] Cleanup

(synced from 9855a0bcf0)
This commit is contained in:
2023-12-02 04:02:42 -06:00
parent b49960b39c
commit a6c2910dc3
+2 -2
View File
@@ -108,8 +108,8 @@ template<typename T>
struct MaybeSV<T, true> { struct MaybeSV<T, true> {
using type = ox::StringView; using type = ox::StringView;
}; };
template<typename KK> template<typename T>
using MaybeSV_t = MaybeSV<KK>::type; using MaybeSV_t = MaybeSV<T>::type;
} }