[ox/std] Change default small Vector size to 0

This commit is contained in:
Gary Talent 2022-01-26 01:43:26 -06:00
parent fcc4cf3308
commit 4a9b0e5dc3

View File

@ -103,7 +103,7 @@ struct SmallVector<T, 0> {
}
template<typename T, std::size_t SmallVectorSize = 1>
template<typename T, std::size_t SmallVectorSize = 0>
class Vector: detail::SmallVector<T, SmallVectorSize> {
public: