| 97 | } |
| 98 | } |
| 99 | void CPHActorCharacter::Destroy() |
| 100 | { |
| 101 | if (!b_exist) |
| 102 | return; |
| 103 | RESTRICTOR_I i = begin(m_restrictors), e = end(m_restrictors); |
| 104 | for (; e != i; ++i) |
| 105 | { |
| 106 | (*i)->Destroy(); |
| 107 | } |
| 108 | inherited::Destroy(); |
| 109 | } |
| 110 | void CPHActorCharacter::ClearRestrictors() |
| 111 | { |
| 112 | RESTRICTOR_I i = begin(m_restrictors), e = end(m_restrictors); |
no test coverage detected