Skip to content

Commit 36de065

Browse files
committed
Fixed unneeded typename keyword which breaks in newer non-msvc compilers in run_simple example
1 parent 1758604 commit 36de065

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

examples/run_simple.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ int main(int argc, char** argv) {
6868
auto vitdec = ViterbiDecoder_Core<K,R,uint16_t,int16_t>(branch_table, decoder_config);
6969

7070
// NOTE: Up to you to choose your desired decoder type
71-
// using Decoder = typename ViterbiDecoder_AVX_u16<K,R>;
72-
// using Decoder = typename ViterbiDecoder_SSE_u16<K,R>;
73-
// using Decoder = typename ViterbiDecoder_NEON_u16<K,R>;
71+
// using Decoder = ViterbiDecoder_AVX_u16<K,R>;
72+
// using Decoder = ViterbiDecoder_SSE_u16<K,R>;
73+
// using Decoder = ViterbiDecoder_NEON_u16<K,R>;
7474
using Decoder = ViterbiDecoder_Scalar<K,R,uint16_t,int16_t>;
7575

7676
vitdec.set_traceback_length(total_input_bits);

0 commit comments

Comments
 (0)