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