Added default destructor for args

This commit is contained in:
David Rupprecht 2021-05-04 17:36:36 +02:00 committed by David Rupprecht
parent 7bee75e126
commit 617fb2ba7e
2 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class nas_args_t
{
public:
nas_args_t() : force_imsi_attach(false) {}
~nas_args_t() = default;
std::string apn_name;
std::string apn_protocol;
std::string apn_user;

View File

@ -42,6 +42,7 @@ class usim_args_t
{
public:
usim_args_t() : using_op(false) {}
~usim_args_t() = default;
std::string mode;
std::string algo;
bool using_op;