| 38 | } |
| 39 | |
| 40 | virtual void test() |
| 41 | { |
| 42 | typedef typename PQueue::value_type value_type; |
| 43 | |
| 44 | for ( auto it = m_arr.begin(); it != m_arr.end(); ++it ) { |
| 45 | if ( !m_Queue.push( value_type( *it ))) |
| 46 | ++m_nPushError; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | void prepare( size_t nStart, size_t nEnd ) |
| 51 | { |
nothing calls this directly
no test coverage detected