1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-04 16:24:29 +01:00

[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 {
storage* m_ptr;
storage m_data[sizeof(T) * N];
storage m_data[N];
} u;
size_t pick_capacity(size_t n) {