This website works better with JavaScript.
Почетна
Помоћ
Пријавите Се
lolengine
/
lol
огледало од
https://github.com/lolengine/lol
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Издања
0
Вики
Activity
Преглед изворни кода
core: Append() was missing for arrays of single element structs.
legacy
Sam Hocevar
sam
пре 12 година
родитељ
f1c0e3ba4e
комит
56d7f24a37
1 измењених фајлова
са
5 додато
и
0 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
src/array.h
+ 5
- 0
src/array.h
Прегледај датотеку
@@ -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);
Write
Preview
Loading…
Откажи
Сачувај