Kaynağa Gözat

core: Append() was missing for arrays of single element structs.

legacy
Sam Hocevar sam 12 yıl önce
ebeveyn
işleme
56d7f24a37
1 değiştirilmiş dosya ile 5 ekleme ve 0 silme
  1. +5
    -0
      src/array.h

+ 5
- 0
src/array.h Dosyayı Görüntüle

@@ -225,6 +225,11 @@ public:
return *this;
}

inline void Append(T1 const &x)
{
*this += x;
}

void Remove(int pos)
{
memmove(m_data + pos, m_data + pos + 1, m_count - pos - 1);


Yükleniyor…
İptal
Kaydet