mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #13843 from marcelbrucker/fix_linking_issue
Fix linking issue #13793 when using -O0 compiler optimization in ARMC…pull/13899/head
commit
c5bae34e9c
|
@ -28,6 +28,8 @@ using namespace mbed;
|
|||
using namespace mbed_cellular_util;
|
||||
using namespace std::chrono;
|
||||
|
||||
constexpr seconds RM1000_AT_CellularStack::SOCKET_TIMEOUT;
|
||||
|
||||
RM1000_AT_CellularStack::RM1000_AT_CellularStack(ATHandler &atHandler, int cid, nsapi_ip_stack_t stack_type, AT_CellularDevice &device) :
|
||||
AT_CellularStack(atHandler, cid, stack_type, device)
|
||||
{
|
||||
|
|
|
@ -22,6 +22,8 @@ using namespace mbed;
|
|||
using namespace mbed_cellular_util;
|
||||
using namespace std::chrono_literals;
|
||||
|
||||
constexpr seconds UBLOX_AT_CellularStack::SOCKET_TIMEOUT;
|
||||
|
||||
UBLOX_AT_CellularStack::UBLOX_AT_CellularStack(ATHandler &atHandler, int cid, nsapi_ip_stack_t stack_type, AT_CellularDevice &device) :
|
||||
AT_CellularStack(atHandler, cid, stack_type, device)
|
||||
{
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
using namespace mbed;
|
||||
using namespace mbed_cellular_util;
|
||||
|
||||
constexpr seconds UBLOX_N2XX_CellularStack::SOCKET_TIMEOUT;
|
||||
|
||||
UBLOX_N2XX_CellularStack::UBLOX_N2XX_CellularStack(ATHandler &atHandler, int cid, nsapi_ip_stack_t stack_type, AT_CellularDevice &device):
|
||||
AT_CellularStack(atHandler, cid, stack_type, device)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue