[dxvk] Fix small_vector size

Kind of harmless since we're not using this much.
This commit is contained in:
Philip Rebohle 2023-01-27 05:27:49 +01:00
parent 2abc102d2c
commit c6111eaf61

View file

@ -106,7 +106,7 @@ namespace dxvk {
union { union {
storage* m_ptr; storage* m_ptr;
storage m_data[sizeof(T) * N]; storage m_data[N];
} u; } u;
size_t pick_capacity(size_t n) { size_t pick_capacity(size_t n) {