-support for system priority

-fixed callers system pointer update
-fixed HashMap issue
This commit is contained in:
Mergul 2018-09-13 22:04:43 +02:00
parent 0eaff0adad
commit 1aa1fbf36b
3 changed files with 35 additions and 3 deletions

View file

@ -148,7 +148,8 @@ public:
extend(array.length * 2);
}
foreach_reverse (size_t i; pos .. used) {
swap(array[i + 1], array[i]);
//swap(array[i + 1], array[i]);
array[i+1] = array[i];
}
emplace(&array[pos], t);
used++;