sdm660-common: gps: Fix unqualified call to std::move
Change-Id: I0568ff861b20de8c00102c7b9abe83e105f17c19 Signed-off-by: pix106 <sbordenave@gmail.com>
This commit is contained in:
parent
9ab513c6d8
commit
425e2083a3
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ public:
|
|||
inline LocIpcRunnable(LocIpc& locIpc, unique_ptr<LocIpcRecver>& ipcRecver) :
|
||||
mAbortCalled(false),
|
||||
mLocIpc(locIpc),
|
||||
mIpcRecver(move(ipcRecver)) {}
|
||||
mIpcRecver(std::move(ipcRecver)) {}
|
||||
inline virtual bool run() override {
|
||||
if (mIpcRecver != nullptr) {
|
||||
mLocIpc.startBlockingListening(*(mIpcRecver.get()));
|
||||
|
|
Loading…
Reference in a new issue