| 232 | } |
| 233 | |
| 234 | inline int GraphEntity_ClearAttributes |
| 235 | ( |
| 236 | GraphEntity *e |
| 237 | ) { |
| 238 | ASSERT(e != NULL); |
| 239 | |
| 240 | int count = AttributeSet_Count(*e->attributes); |
| 241 | |
| 242 | AttributeSet_Free(e->attributes); |
| 243 | |
| 244 | return count; |
| 245 | } |
nothing calls this directly
no test coverage detected