mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxvk] Fix small_vector size
Kind of harmless since we're not using this much.
This commit is contained in:
parent
2abc102d2c
commit
c6111eaf61
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue