This commit is contained in:
Francesco Cozzuto
2021-11-04 17:27:06 +01:00
parent 0157d28f67
commit b224f57361
5 changed files with 8 additions and 25 deletions
-3
View File
@@ -96,9 +96,6 @@ static _Bool op_eql(Object *self, Object *other)
_Bool match = s1->size == s2->size && !strncmp(s1->body, s2->body, s1->size);
#warning "TEMP"
fprintf(stderr, "%s == %s ? %s\n", s1->body, s2->body, match ? "yes" : "no");
return match;
}