Misc changes
This commit is contained in:
@@ -296,6 +296,7 @@ CORE_Static Intern_String
|
||||
//-----------------------------------------------------------------------------
|
||||
// Array List
|
||||
// @todo(krzosa): If even one item got removed from block
|
||||
// @! Make List api more convenient list.add
|
||||
// the block should go on free list
|
||||
//-----------------------------------------------------------------------------
|
||||
const int LIST_DEFAULT_BLOCK_SIZE = 32;
|
||||
@@ -348,7 +349,6 @@ struct List{
|
||||
result.node_index = -1;
|
||||
return ++result;
|
||||
}
|
||||
|
||||
Iter end() { return{}; }
|
||||
friend bool operator!=(Iter &a, Iter &b) { return a.item != b.item; }
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user