1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-24 17:27:18 +00:00

Remove extra MARK_SEEN

This commit is contained in:
Calvin Rose 2023-07-01 17:37:12 -05:00
parent ebb6fe5be3
commit 60fba585e3

View File

@ -413,7 +413,6 @@ static void marshal_one_abstract(MarshalState *st, Janet x, int flags) {
janet_abstract_incref(abstract);
pushbyte(st, LB_THREADED_ABSTRACT);
pushbytes(st, (uint8_t *) &abstract, sizeof(abstract));
MARK_SEEN();
return;
}
#endif