Skip to content

Commit

Permalink
Remove unnecessary ?Sized
Browse files Browse the repository at this point in the history
  • Loading branch information
MiSawa committed Jun 30, 2024
1 parent 5505d54 commit 782b52d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/bytecode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::{
};

#[derive(Clone, Eq, PartialEq)]
pub struct NamedFunction<F: Clone + ?Sized> {
pub struct NamedFunction<F: Clone> {
pub name: &'static str,
pub func: F,
}
Expand Down

0 comments on commit 782b52d

Please # to comment.