diff options
Diffstat (limited to 'set_linked_lists.c')
-rw-r--r-- | set_linked_lists.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/set_linked_lists.c b/set_linked_lists.c index 86a53b3..004e55a 100644 --- a/set_linked_lists.c +++ b/set_linked_lists.c @@ -239,7 +239,10 @@ bool sets_equal(const set a, const set b) { int elt_of_set(const set s) { if (s->first != NULL) return s->first->value; - return -1; // should raise exception... hope this will be handled properly + + fprintf(stderr, "No element in empty set...\n"); + dump_set(s); + assert(false); } int elt_of_set_heur(const set s, int h) { |