Upgrade to rust 1.41.0 (bp #8202) (#8219)

automerge
This commit is contained in:
mergify[bot]
2020-02-11 13:56:58 -08:00
committed by GitHub
parent 70089a5258
commit 79035bdbed
8 changed files with 6 additions and 26 deletions

View File

@@ -71,7 +71,7 @@ pub unsafe fn deserialize<'a>(input: *mut u8) -> (&'a Pubkey, Vec<AccountInfo<'a
let is_signer = {
#[allow(clippy::cast_ptr_alignment)]
let is_signer = *(input.add(offset) as *const u64);
(is_signer != 0)
is_signer != 0
};
offset += size_of::<u64>();