-EntityTemplate.getComponent additional data check

-LinearLayout proggress:
 *added alignment to data
 *fixed add/remove component functions
This commit is contained in:
Mergul 2018-09-26 12:50:51 +02:00
parent c18ac54265
commit c915b1a8c7
3 changed files with 63 additions and 38 deletions

View file

@ -194,7 +194,7 @@ public:
}
export ref T opIndex(size_t elemNum) {
assert(elemNum < used, "Range violation [index]");
debug assert(elemNum < used, "Range violation [index]");
return array.ptr[elemNum];
}