- switch to unique_ptr

- add initial CI
This commit is contained in:
2019-06-04 15:30:53 +03:00
parent 31c876490c
commit 228e2d7829
88 changed files with 269 additions and 262 deletions

View File

@@ -245,7 +245,7 @@ void UserAgent::start()
mDum->setServerPagerMessageHandler(this);
unique_ptr<resip::AppDialogSetFactory> uac_dsf(new ResipSessionFactory(this));
mDum->setAppDialogSetFactory(uac_dsf);
mDum->setAppDialogSetFactory(std::move(uac_dsf));
// Fire onStart event if stun is not used or stun server ip is known
if (mConfig[CONFIG_STUNSERVER_NAME].asStdString().empty() || !mConfig[CONFIG_STUNSERVER_IP].asStdString().empty())