Fix the missing std
Bug: b/239662094 Test: enable Wunqualified-std-cast-call locally and run m to build Change-Id: I79b79a9fdaf8e78a39346190200f67ccf5a66aab
This commit is contained in:
parent
475bb11af0
commit
7edcd7cd66
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ bool Dvr::createDvrMQ() {
|
|||
return false;
|
||||
}
|
||||
|
||||
mDvrMQ = move(tmpDvrMQ);
|
||||
mDvrMQ = std::move(tmpDvrMQ);
|
||||
|
||||
if (EventFlag::createEventFlag(mDvrMQ->getEventFlagWord(), &mDvrEventFlag) != ::android::OK) {
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue