Skip to content

Commit

Permalink
use std:::move
Browse files Browse the repository at this point in the history
  • Loading branch information
silverchris committed Aug 14, 2022
1 parent e905edc commit d2a56e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/autoapp/Service/AndroidAutoEntityFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include <autoapp/Service/AndroidAutoEntityFactory.hpp>
#include <autoapp/Service/AndroidAutoEntity.hpp>
#include <autoapp/Service/Pinger.hpp>
#include <utility>

namespace autoapp::service {

Expand All @@ -36,7 +37,7 @@ AndroidAutoEntityFactory::AndroidAutoEntityFactory(asio::io_service &ioService,
: ioService_(ioService),
configuration_(std::move(configuration)),
serviceFactory_(serviceFactory),
device(Device) {
device(std::move(Device)) {

}

Expand Down

0 comments on commit d2a56e8

Please sign in to comment.