mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 12:10:34 +00:00
·Add missing include
This commit is contained in:
parent
18cd7daa09
commit
eb53c36594
@ -32,6 +32,7 @@
|
||||
#ifndef GNSS_SDR_VITERBI_DECODER_H_
|
||||
#define GNSS_SDR_VITERBI_DECODER_H_
|
||||
|
||||
#include <cstddef> // for size_t
|
||||
#include <deque>
|
||||
|
||||
/*!
|
||||
@ -111,7 +112,7 @@ private:
|
||||
// operations on the trellis (change decoder state)
|
||||
void init_trellis_state();
|
||||
int do_acs(const double sym[], int nbits);
|
||||
int do_traceback(size_t traceback_length);
|
||||
int do_traceback(std::size_t traceback_length);
|
||||
int do_tb_and_decode(int traceback_length, int requested_decoding_length, int state, int bits[], float& indicator_metric);
|
||||
|
||||
// branch metric function
|
||||
|
Loading…
Reference in New Issue
Block a user