Skip to content

Commit

Permalink
Add a ?Sized bound for GhostPtrToken: Resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
dewert99 committed Aug 6, 2024
1 parent 843e41e commit 080a943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion creusot-contracts/src/ghost_ptr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ impl<'a, T: ?Sized> DerefMut for GhostPtrTokenMut<'a, T> {
}

#[trusted]
impl<'a, T> Resolve for GhostPtrTokenMut<'a, T> {
impl<'a, T: ?Sized> Resolve for GhostPtrTokenMut<'a, T> {
#[predicate(prophetic)]
#[open]
fn resolve(self) -> bool {
Expand Down

0 comments on commit 080a943

Please sign in to comment.