Skip to content

Commit

Permalink
regen f2003
Browse files Browse the repository at this point in the history
  • Loading branch information
gardner48 committed Jul 18, 2023
1 parent fba5fb9 commit d43be32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arkode/fmod/farkode_mod.c
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ SWIGEXPORT void _wrap_ARKodeSPRKTableMem_op_assign__(SwigClassWrapper *farg1, Sw
}


SWIGEXPORT void * _wrap_FARKodeSPRKTable_Create(int const *farg1, int const *farg2, double *farg3, double *farg4) {
SWIGEXPORT void * _wrap_FARKodeSPRKTable_Create(int const *farg1, int const *farg2, double const *farg3, double const *farg4) {
void * fresult ;
int arg1 ;
int arg2 ;
Expand All @@ -943,7 +943,7 @@ SWIGEXPORT void * _wrap_FARKodeSPRKTable_Create(int const *farg1, int const *far
arg2 = (int)(*farg2);
arg3 = (sunrealtype *)(farg3);
arg4 = (sunrealtype *)(farg4);
result = (ARKodeSPRKTable)ARKodeSPRKTable_Create(arg1,arg2,arg3,arg4);
result = (ARKodeSPRKTable)ARKodeSPRKTable_Create(arg1,arg2,(double const *)arg3,(double const *)arg4);
fresult = result;
return fresult;
}
Expand Down

0 comments on commit d43be32

Please sign in to comment.