Fix the missing std
Bug: b/239662094 Test: enable Wunqualified-std-cast-call locally and run m to build Change-Id: Ibc62acaa7f4fa1e343a90e78dd245fe9177717cb
This commit is contained in:
parent
968539e9c7
commit
124523cef9
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ inline PackageInfoData initPackageInfoData(FuzzedDataProvider* fdp) {
|
|||
}
|
||||
}
|
||||
packageInfoData.sharedSignaturesVector =
|
||||
make_shared<KeyAttestationPackageInfo::SignaturesVector>(move(signatureVector));
|
||||
make_shared<KeyAttestationPackageInfo::SignaturesVector>(std::move(signatureVector));
|
||||
return packageInfoData;
|
||||
}
|
||||
#endif // KEYSTORECOMMON_H
|
||||
|
|
Loading…
Reference in a new issue