Skip to content

Commit

Permalink
oops I forgot
Browse files Browse the repository at this point in the history
  • Loading branch information
catornot committed Aug 31, 2024
1 parent 4c4c384 commit d1cfbc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/high/squirrel_traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ impl<T: PushToSquirrelVm> IntoSquirrelArgs for T {
// TODO: check for correctness
macro_rules! into_squirrel_args_impl{
( $( ($($ty_name: ident : $tuple_index:tt),*) );*; ) => { $(
impl<$($ty_name: PushToSquirrelVm + 'static + Send + Sync,)*> IntoSquirrelArgs for ($($ty_name,)*) {
impl<$($ty_name: PushToSquirrelVm,)*> IntoSquirrelArgs for ($($ty_name,)*) {
fn into_push(self, sqvm: NonNull<HSquirrelVM>, sqfunctions: &'static SquirrelFunctions) -> i32 {
$(
self.$tuple_index.push_to_sqvm(sqvm, sqfunctions);
Expand Down

0 comments on commit d1cfbc4

Please sign in to comment.