| 106 | |
| 107 | template<typename B, typename Q> |
| 108 | module::Decoder_SIHO<B, Q>* |
| 109 | Decoder_RSC_DB ::build(const std::vector<std::vector<int>>& trellis, module::Encoder<B>* encoder) const |
| 110 | { |
| 111 | try |
| 112 | { |
| 113 | return Decoder::build<B, Q>(encoder); |
| 114 | } |
| 115 | catch (spu::tools::cannot_allocate const&) |
| 116 | { |
| 117 | return build_siso<B, Q>(trellis); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | // ==================================================================================== explicit template instantiation |
| 122 | #include "Tools/types.h" |
nothing calls this directly
no outgoing calls
no test coverage detected