| 1156 | } |
| 1157 | |
| 1158 | inline bool Graph_EntityIsDeleted |
| 1159 | ( |
| 1160 | const GraphEntity *e |
| 1161 | ) { |
| 1162 | if(e->attributes == NULL) { |
| 1163 | // most likely an entity which wasn't created just yet (reserved) |
| 1164 | return false; |
| 1165 | } |
| 1166 | |
| 1167 | return DataBlock_ItemIsDeleted(e->attributes); |
| 1168 | } |
| 1169 | |
| 1170 | static void _Graph_FreeRelationMatrices |
| 1171 | ( |
no test coverage detected