Fix old GCC compilation

This commit is contained in:
Xavier Arteaga 2021-08-02 18:00:32 +02:00
parent 856573b92f
commit 98f29961bc
1 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@ public:
R_CARRIER_CUSTOM_20MHZ,
R_CARRIER_COUNT
} carrier = R_CARRIER_CUSTOM_10MHZ;
const std::array<std::string, R_CARRIER_COUNT> R_CARRIER_STRING = {"10MHz", "20MHz"};
const std::array<std::string, R_CARRIER_COUNT> R_CARRIER_STRING = {{"10MHz", "20MHz"}};
enum {
/**
@ -54,7 +54,7 @@ public:
R_TDD_FR1_15_1,
R_TDD_COUNT,
} tdd = R_TDD_CUSTOM_6_4;
const std::array<std::string, R_TDD_COUNT> R_TDD_STRING = {"6D+4U", "FR1.15-1"};
const std::array<std::string, R_TDD_COUNT> R_TDD_STRING = {{"6D+4U", "FR1.15-1"}};
enum {
/**
@ -85,7 +85,7 @@ public:
R_PDSCH_COUNT
} pdsch = R_PDSCH_DEFAULT;
const std::array<std::string, R_PDSCH_COUNT> R_PDSCH_STRING = {"default", "ts38101/5.2-1"};
const std::array<std::string, R_PDSCH_COUNT> R_PDSCH_STRING = {{"default", "ts38101/5.2-1"}};
enum {
/**
@ -129,7 +129,7 @@ public:
} prach = R_PRACH_DEFAULT_LTE;
reference_cfg_t() = default;
reference_cfg_t(const std::string& args);
explicit reference_cfg_t(const std::string& args);
};
phy_cfg_nr_default_t(const reference_cfg_t& reference_cfg);