| 348 | |
| 349 | template<typename M> |
| 350 | static void PropagateMarkMap(M *map) |
| 351 | { |
| 352 | TMapIterator<typename M::KeyType,DObject*> it(*map); |
| 353 | typename M::Pair * p; |
| 354 | while(it.NextPair(p)) |
| 355 | { |
| 356 | GC::Mark(&p->Value); |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | size_t DObject::PropagateMark() |
| 361 | { |
no test coverage detected