aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ADT/SmallPtrSet.h
AgeCommit message (Expand)Author
2009-10-26Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth
2009-07-08Make SmallPtrSet iterators real iteratorsDouglas Gregor
2009-03-29rename PointerLikeTypeInto to PointerLikeTypeTraits, add trait for Chris Lattner
2009-03-28declare everything as class to avoid angering the VC++ gods.Chris Lattner
2009-03-28add a traits class for SmallPtrSet that allows us to stick things that areChris Lattner
2009-02-07Change several SmallPtrSetImpl members from public to protected,Dan Gohman
2009-01-09Removed trailing whitespace.Misha Brukman
2008-05-05Fix more -Wshorten-64-to-32 warnings.Evan Cheng
2008-03-25Add explicit keywords.Dan Gohman
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-11-06make smallptrset more const and type correct, which caught a fewChris Lattner
2007-08-15Properly use const qualifiersAnton Korobeynikov
2007-08-05When clearing a SmallPtrSet, if the set had a huge capacity, but theChris Lattner
2007-07-27Allow SmallPtrSet to hold pointers to const data.Owen Anderson
2007-07-17Unbreak the build by putting calls to free into the implementation file andReid Spencer
2007-07-16Use realloc() to (potentially) resize the contents of SmallPtrSet in place.Owen Anderson
2007-07-09Make the assignment operator for SmallPtrSet return a reference, and fix a lo...Owen Anderson
2007-07-09work around an aparent gcc name resolution bug by Chris Lattner
2007-07-09implement operator= for smallptrsetChris Lattner
2007-04-14Fix PR1329.Jeff Cohen
2007-04-02add range version of insert()Chris Lattner
2007-03-04add iterator range version of ctor.Chris Lattner
2007-03-02Fix PR1234 by working around a compiler bug.Chris Lattner
2007-02-07do not let the table fill up with tombstones.Chris Lattner
2007-01-27provide a definition for uintptr_tChris Lattner
2007-01-27add some missing APIChris Lattner
2007-01-27implement SmallPtrSet::eraseChris Lattner
2007-01-27Fix a limitation of SmallPtrSet. Before it would assert if the smallsizeChris Lattner
2007-01-27add some comments on the algorithmChris Lattner
2007-01-27Add a new SmallSet ADT specialized for pointers.Chris Lattner