From e32a65b3a3def22bdf8f1e1a351194c872d8bf9c Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 19 Jun 2023 11:07:44 +0200 Subject: [PATCH] Fix building in macOS --- src/core/system_parameters/Galileo_OSNMA.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/core/system_parameters/Galileo_OSNMA.h b/src/core/system_parameters/Galileo_OSNMA.h index 5be8dfcce..2cf1104af 100644 --- a/src/core/system_parameters/Galileo_OSNMA.h +++ b/src/core/system_parameters/Galileo_OSNMA.h @@ -167,6 +167,13 @@ class Mack_lookup { public: Mack_lookup() = default; + Mack_lookup(uint8_t msg_, + uint8_t nt_, + const std::vector& s1_, + const std::vector& s2_) : msg(msg_), + nt(nt_), + sequence1(s1_), + sequence2(s2_){}; uint8_t msg{}; uint8_t nt{}; std::vector sequence1;