| 78 | } |
| 79 | } |
| 80 | void MemUpdate(unsigned int index) |
| 81 | { |
| 82 | (void)index; |
| 83 | if(index != 0) |
| 84 | { |
| 85 | MemCache tmp = mCache[index-1]; |
| 86 | mCache[index-1] = mCache[index]; |
| 87 | mCache[index] = tmp; |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | void InvalidateState() |
| 92 | { |
no outgoing calls
no test coverage detected