small fixes

This commit is contained in:
aap
2020-05-07 21:56:09 +02:00
parent 3ae10c93ac
commit a8f1505517
4 changed files with 15 additions and 3 deletions

View File

@@ -17,6 +17,16 @@ public:
void clear(void){
this->allocPtr = 0;
}
int getIndex(T *item){
assert(item >= &this->store[0]);
assert(item < &this->store[n]);
return item - this->store;
}
T *getItem(int index){
assert(index >= 0);
assert(index < n);
return &this->store[index];
}
};
template<typename T, typename U = T>