Skip to content

Commit

Permalink
Fix GCC warning
Browse files Browse the repository at this point in the history
  • Loading branch information
GrieferAtWork committed Dec 8, 2024
1 parent e22a96f commit 456d538
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dex/collections/deque.c
Original file line number Diff line number Diff line change
Expand Up @@ -1477,7 +1477,8 @@ INTERN DeeTypeObject Deque_Type = {
/* .tp_members = */ NULL,
/* .tp_class_methods = */ NULL,
/* .tp_class_getsets = */ NULL,
/* .tp_class_members = */ deq_class_members
/* .tp_class_members = */ deq_class_members,
/* .tp_method_hints = */ deq_method_hints,
};


Expand Down

0 comments on commit 456d538

Please sign in to comment.