| 344 | #ifdef HXCPP_VISIT_ALLOCS |
| 345 | |
| 346 | void VisitClassStatics(hx::VisitContext *__inCtx) |
| 347 | { |
| 348 | HX_VISIT_MEMBER(Class_obj__mClass); |
| 349 | ClassMap::iterator end = sClassMap->end(); |
| 350 | for(ClassMap::iterator i = sClassMap->begin(); i!=end; ++i) |
| 351 | i->second->VisitStatics(__inCtx); |
| 352 | } |
| 353 | |
| 354 | #endif |
| 355 |