Browse Source

sm8450-common: gps: Fix compilation on U

Change-Id: I7ca7e78addd6385289b8449edae8b682839ecc91
me-cafebabe 1 year ago
parent
commit
6bfd2920cd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gps/utils/LocIpc.cpp

+ 1 - 1
gps/utils/LocIpc.cpp

@@ -325,7 +325,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()));