Sfoglia il codice sorgente

fixed array build

undefined
Benjamin ‘Touky’ Huet Sam Hocevar <sam@hocevar.net> 10 anni fa
parent
commit
2043b0c7ce
1 ha cambiato i file con 7 aggiunte e 7 eliminazioni
  1. +7
    -7
      src/lol/base/array.h

+ 7
- 7
src/lol/base/array.h Vedi File

@@ -484,18 +484,18 @@ public:
inline void Insert(ptrdiff_t pos, T... args) inline void Insert(ptrdiff_t pos, T... args)
{ {
ASSERT(pos >= 0); ASSERT(pos >= 0);
ASSERT(pos <= m_count); ASSERT(pos <= this->m_count);


if (m_count >= m_reserved) if (this->m_count >= this->m_reserved)
Grow(); this->Grow();


for (ptrdiff_t i = m_count; i > pos; --i) for (ptrdiff_t i = this->m_count; i > pos; --i)
{ {
new (&m_data[i]) element_t(m_data[i - 1]); new (&this->m_data[i]) element_t(this->m_data[i - 1]);
m_data[i - 1].~element_t(); this->m_data[i - 1].~element_t();
} }
new (&this->m_data[pos]) tuple<T...>({ args... }); new (&this->m_data[pos]) tuple<T...>({ args... });
++m_count; ++this->m_count;
} }
}; };




||||||
x
 
000:0
Caricamento…
Annulla
Salva