Add SmallString a (currently) minimal class that adapts SmallVector to be
[oota-llvm.git] / include / llvm / ADT / SmallVector.h
2006-10-30 Chris LattnerAdd SmallString a (currently) minimal class that adapts...
2006-10-09 Andrew LenharthFix build error in gcc 3.4 and make more this general
2006-10-08 Chris LattnerFix PR897
2006-09-01 Chris Lattneradd a simple reserve method.
2006-08-28 Chris LattnerAdd 2nd form of resize
2006-08-22 Chris Lattneradd resize, move swap out of line
2006-08-22 Chris Lattneradd a bunch more operations, including swap, insert...
2006-08-16 Chris Lattnersilence a warning.
2006-08-16 Chris LattnerBugfixes for smallvector when the element size is small...
2006-08-14 Chris Lattneravoid a warning
2006-08-11 Chris Lattnermove code out of line so that GCC doesn't inline it...
2006-08-11 Chris LattnerSplit SmallVector into SmallVector and SmallVectorImpl...
2006-08-08 Chris Lattnercapacity is a pointer, not a value
2006-08-08 Chris Lattneradd a new assign method
2006-08-08 Chris LattnerAdd ctor that initializes from a range.
2006-08-07 Chris LattnerRemove assertions from the SmallVector class. They...
2006-08-07 Chris LattnerAdd a clear method to SmallVector
2006-08-05 Evan ChengThis causes some random crashes.
2006-07-28 Chris LattnerThe smallvector dtor should destroy the elements.
2006-07-27 Chris LattnerUse std::copy instead of custom loops to take advantage...
2006-07-26 Chris LattnerAdd a new llvm::SmallVector template, which is similar...