| 41 | |
| 42 | template<typename TDatums, typename TWorker> |
| 43 | bool SubThreadNoQueue<TDatums, TWorker>::work() |
| 44 | { |
| 45 | try |
| 46 | { |
| 47 | TDatums tDatums; |
| 48 | return this->workTWorkers(tDatums, true); |
| 49 | } |
| 50 | catch (const std::exception& e) |
| 51 | { |
| 52 | error(e.what(), __LINE__, __FUNCTION__, __FILE__); |
| 53 | return false; |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | COMPILE_TEMPLATE_DATUM(SubThreadNoQueue); |
| 58 | } |
nothing calls this directly
no test coverage detected