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