1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-04-11 13:23:14 +00:00

Fix building in macOS

This commit is contained in:
Carles Fernandez 2023-06-19 11:07:44 +02:00
parent 6fcf6d79b3
commit e32a65b3a3
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

@ -167,6 +167,13 @@ class Mack_lookup
{
public:
Mack_lookup() = default;
Mack_lookup(uint8_t msg_,
uint8_t nt_,
const std::vector<std::string>& s1_,
const std::vector<std::string>& s2_) : msg(msg_),
nt(nt_),
sequence1(s1_),
sequence2(s2_){};
uint8_t msg{};
uint8_t nt{};
std::vector<std::string> sequence1;