# HG changeset patch # User Balazs Dezso # Date 1260432887 -3600 # Node ID 28c7ad6f8d912e33ecdac866af26872de1cecc2c # Parent 6be1f9bd2ac079ce3a039f0aefc4747c5a2a8f2f Fix clear() function in ExtendFindEnum (#335) diff -r 6be1f9bd2ac0 -r 28c7ad6f8d91 lemon/unionfind.h --- a/lemon/unionfind.h Wed Dec 09 11:14:06 2009 +0100 +++ b/lemon/unionfind.h Thu Dec 10 09:14:47 2009 +0100 @@ -739,7 +739,7 @@ /// Erase each item from the data structure. void clear() { items.clear(); - classes.clear; + classes.clear(); firstClass = firstFreeClass = firstFreeItem = -1; }