| 65 | // Functor object to help with accumulating values in vectors |
| 66 | template< > |
| 67 | struct Accumulator< StatData > |
| 68 | { |
| 69 | StatData acc; |
| 70 | |
| 71 | Accumulator( ) {} |
| 72 | void operator( )( const StatData& x ) |
| 73 | { |
| 74 | acc.deltaNanoSec += x.deltaNanoSec; |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 | |
| 79 | // Unary predicate used for remove_if() algorithm |
nothing calls this directly
no outgoing calls
no test coverage detected