aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ADT/DenseSet.h
AgeCommit message (Expand)Author
2013-01-04Make comment a bit more clear.Eric Christopher
2012-12-03Add a getMemorySize() function for DenseSet.Argyrios Kyrtzidis
2011-07-21Initialize DenseSets lazily.Benjamin Kramer
2011-01-27Add DenseSet::resize for API parity with DenseMap::resize.Nick Lewycky
2010-09-01Make the iterator form of erase return void, since it always succeeds,Dan Gohman
2010-07-27Fill out the interface of DenseSet a bit.Owen Anderson
2010-03-08Iterator traits and swap. closes PR6548 and PR6549Andrew Lenharth
2010-02-02Make DenseSet's erase pass on the return value rather than swallowing it.Dan Gohman
2009-12-09Remove unneeded ';' and a class/struct mismatch (noticed by clang).Daniel Dunbar
2009-12-06remove extraneous comma clang warns aboutChris Lattner
2009-04-01Add range insert method for DenseSet and define DenseMapInfo for chars.Chris Lattner
2009-01-09Removed trailing whitespace.Misha Brukman
2008-07-07Make DenseMap's insert return a pair, to more closely resemble std::map.Dan Gohman
2008-07-02Have DenseSet::insert return a bool indicating whether the insertion succeede...Owen Anderson
2008-04-24Implement != for DenseSet iterators.Ted Kremenek
2008-04-24Added iterator support for DenseSet.Ted Kremenek
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-10-05Mark count method const.Chris Lattner
2007-09-30Add a new DenseSet abstraction.Chris Lattner