mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[util] Add parameter to initialize small_vector with a given size
Matches std::vector.
This commit is contained in:
parent
c52a68a5be
commit
36826ab1ab
1 changed files with 4 additions and 0 deletions
|
@ -19,6 +19,10 @@ namespace dxvk {
|
|||
|
||||
small_vector() { }
|
||||
|
||||
small_vector(size_t size) {
|
||||
resize(size);
|
||||
}
|
||||
|
||||
small_vector(const small_vector& other) {
|
||||
reserve(other.m_size);
|
||||
for (size_t i = 0; i < other.m_size; i++) {
|
||||
|
|
Loading…
Add table
Reference in a new issue