Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
GrieferAtWork committed Oct 5, 2024
1 parent 0ac98c4 commit 78ebe88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/deemon/execute/function-wrappers.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ INTDEF DeeTypeObject FunctionStatics_Type;


PRIVATE WUNUSED NONNULL((1)) DREF DeeObject *DCALL
funcstaticsiter_nii_getseq(FunctionStaticsIterator *__restrict self) {
funcstaticsiter_getseq(FunctionStaticsIterator *__restrict self) {
return DeeFunction_GetStaticsWrapper(self->fsi_func);
}

Expand Down Expand Up @@ -217,7 +217,7 @@ PRIVATE struct type_nii tpconst funcstaticsiter_nii = {
/* .nii_flags = */ TYPE_ITERX_FNORMAL,
{
/* .nii_common = */ {
/* .nii_getseq = */ (dfunptr_t)&funcstaticsiter_nii_getseq,
/* .nii_getseq = */ (dfunptr_t)&funcstaticsiter_getseq,
/* .nii_getindex = */ (dfunptr_t)&funcstaticsiter_nii_getindex,
/* .nii_setindex = */ (dfunptr_t)&funcstaticsiter_nii_setindex,
/* .nii_rewind = */ (dfunptr_t)&funcstaticsiter_nii_rewind,
Expand Down Expand Up @@ -246,7 +246,7 @@ PRIVATE struct type_cmp funcstaticsiter_cmp = {
};

PRIVATE struct type_getset tpconst funcstaticsiter_getsets[] = {
TYPE_GETTER(STR_seq, &funcstaticsiter_nii_getseq, "->?Ert:FunctionStatics"),
TYPE_GETTER(STR_seq, &funcstaticsiter_getseq, "->?Ert:FunctionStatics"),
TYPE_GETSET_END
};

Expand Down

0 comments on commit 78ebe88

Please sign in to comment.