| 222 | } |
| 223 | |
| 224 | void Revert() |
| 225 | { |
| 226 | for ( std::vector<memPatch>::iterator i = changes.begin(), iend = changes.end(); i != iend; ++i ) |
| 227 | WriteMemRaw(i->location, i->patch, i->patchSize); |
| 228 | changes.clear(); |
| 229 | return; |
| 230 | } |
| 231 | |
| 232 | }; |
nothing calls this directly
no test coverage detected