| 40 | { |
| 41 | public: |
| 42 | void |
| 43 | push_back(const SourceLocation &location, int event, int reentrant = NO_REENTRANT) |
| 44 | { |
| 45 | int pos = history_pos++ % Count; |
| 46 | history[pos].location = location; |
| 47 | history[pos].event = static_cast<unsigned short>(event); |
| 48 | history[pos].reentrancy = static_cast<short>(reentrant); |
| 49 | } |
| 50 | |
| 51 | void |
| 52 | clear() |
no outgoing calls
no test coverage detected