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:
zijunzhao 2023-03-02 00:49:19 +00:00
parent 968539e9c7
commit 124523cef9

View file

@ -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