Skip to content

Commit

Permalink
Fix GCC warning
Browse files Browse the repository at this point in the history
  • Loading branch information
GrieferAtWork committed Nov 24, 2024
1 parent 54635e5 commit e23c0b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/deemon/objects/seq/default-api-operators.c.inl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ DeeSeq_DefaultOperatorIterWithEmpty(DeeObject *__restrict self) {
return_empty_iterator;
}

INTERN WUNUSED NONNULL((1)) DREF DeeObject *DCALL
INTERN /*WUNUSED*/ NONNULL((1)) DREF DeeObject *DCALL
DeeSeq_DefaultOperatorIterWithError(DeeObject *__restrict self) {
err_seq_unsupportedf(self, "operator iter");
return NULL;
Expand Down
2 changes: 1 addition & 1 deletion src/deemon/objects/seq/default-api.h
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ INTDEF int DCALL none_i1(void *UNUSED(a));
INTDEF WUNUSED NONNULL((1)) int DCALL DeeSeq_DefaultOperatorBoolWithError(DeeObject *__restrict self);

INTDEF WUNUSED NONNULL((1)) DREF DeeObject *DCALL DeeSeq_DefaultOperatorIterWithEmpty(DeeObject *__restrict self);
INTDEF WUNUSED NONNULL((1)) DREF DeeObject *DCALL DeeSeq_DefaultOperatorIterWithError(DeeObject *__restrict self);
INTDEF /*WUNUSED*/ NONNULL((1)) DREF DeeObject *DCALL DeeSeq_DefaultOperatorIterWithError(DeeObject *__restrict self);

INTDEF WUNUSED NONNULL((1)) DREF DeeObject *DCALL DeeSeq_DefaultOperatorSizeObWithSeqOperatorSize(DeeObject *__restrict self);
INTDEF WUNUSED NONNULL((1)) DREF DeeObject *DCALL DeeSeq_DefaultOperatorSizeObWithEmpty(DeeObject *__restrict self);
Expand Down

0 comments on commit e23c0b1

Please sign in to comment.