This website works better with JavaScript.
Почетна
Преглед
Помоћ
Пријавите Се
felix
/
ftb
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Захтеви за спајање
0
Издања
0
Вики
Activity
Преглед изворни кода
small fix in array lists
banana-cakes
FelixBrendel
пре 6 година
родитељ
7b128b33c9
комит
60e3253036
1 измењених фајлова
са
1 додато
и
1 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
arraylist.hpp
+ 1
- 1
arraylist.hpp
Прегледај датотеку
@@ -52,7 +52,7 @@ struct Array_List {
}
void reserve(unsigned int count) {
if (next_index+count
<
= (unsigned int)length) {
if (next_index+count
>
= (unsigned int)length) {
length *= 2;
data = (type*)realloc(data, length * sizeof(type));
}
Write
Preview
Loading…
Откажи
Сачувај