summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/SmallVector.h
Commit message (Expand)AuthorAge
* Add a generic 'capacity_in_bytes' function to allow inspection of memory usag...Ted Kremenek2011-07-27
* Fix a subtle issue in SmallVector. The following code did not work as expected:Owen Anderson2011-07-06
* Add missing standard headers. Patch by Joerg Sonnenberger!Nick Lewycky2010-12-19
* Support: Move c_str from SmallVector back to SmallString and add a free standingMichael J. Spencer2010-12-09
* Support/ADT: Move c_str() from SmallString to SmallVectorImpl. The Windows Pa...Michael J. Spencer2010-12-06
* Fix spelling!Michael J. Spencer2010-11-26
* Fix Whitespace.Michael J. Spencer2010-11-26
* GCC extensions are no longer used here - update the comment.Duncan Sands2010-10-03
* Remove two uses of the gcc specific 'aligned' attribute. ThisDuncan Sands2010-10-03
* After some discussion with djg, teach SmallVector to grow from a zeroJohn McCall2010-09-02
* SmallVector's growth policies don't like starting from zero capacity.John McCall2010-08-26
* Provide an explicit specialization of SmallVector at N=0 which doesJohn McCall2010-08-25
* disable SmallVectorImpl's copy constructor. This prevents a classChris Lattner2010-06-15
* Add includes to get ptrdiff_t. This is needed by gcc-4.6 which hasDuncan Sands2010-06-10
* Use realloc instead of malloc+memcpy when growing a POD SmallVector. A smartBenjamin Kramer2010-06-08
* remove trailing whitespaceJim Grosbach2010-06-02
* Fix PR6910.Torok Edwin2010-04-29
* Fix SmallVector's insert to handle non-random-access iterators.Dan Gohman2010-03-26
* Fix a name clash that was breaking MSVC builds.Benjamin Kramer2010-03-18
* Fix a bug found by inspection; in the __GNUC__ code, the alignmentDan Gohman2010-03-18
* tabs -> spaces.Chris Lattner2009-12-17
* Fix Windows build breakage...Steve Naroff2009-12-17
* Fix unused variable warning.Eric Christopher2009-12-17
* Fix one more missing this-> to placate that picky clang++.Daniel Dunbar2009-12-16
* fix more missing this->'s to placate clang++Chris Lattner2009-12-16
* Fix a missing this-> that clang++ notices.Chris Lattner2009-12-16
* now that libsystem no longer uses SmallVector, we can move Chris Lattner2009-12-16
* factor out the grow() method for all pod implementations into oneChris Lattner2009-12-16
* pull destroy_range and uninitialized_copy up to theChris Lattner2009-12-16
* sink most of the meat in smallvector back from SmallVectorTemplateCommonChris Lattner2009-12-16
* substantial refactoring of SmallVector, now most code is in SmallVectorTempla...Chris Lattner2009-12-16
* a few improvements:Chris Lattner2009-12-15
* hoist the begin/end/capacity members and a few trivial methodsChris Lattner2009-12-15
* improve isPodLike to know that all non-class types are pod.Chris Lattner2009-12-15
* Clean up the minor mess I caused with removing iterator.h. I shall take care ...Gabor Greif2009-08-27
* Add SmallVector::{capacity,set_size}.Daniel Dunbar2009-08-19
* Tighten up the asserts in SmallVector::operator[]().Jay Foad2009-05-21
* Implement new SmallVector::data() methods.Jay Foad2009-05-21
* Fix for PR3946, in which SmallVector could behave strangely in corner cases.Owen Anderson2009-04-22
* fix overflow checks in SmallVector:Chris Lattner2009-04-02
* Fix PR3860 by correcting a predicate.Chris Lattner2009-03-22
* Fixed lint errors:Misha Brukman2009-02-20
* Add explicit keywords.Dan Gohman2009-02-18
* Removed trailing whitespace.Misha Brukman2009-01-09
* Add explicit this-> for some member function in templated base class.Cedric Venet2008-12-13
* add a new pop_back_val method which returns the value popped. This isChris Lattner2008-12-05
* Implement a SmallVector insert method that can insert multipleDan Gohman2008-10-16
* Add bound checks in SmallVectorRafael Espindola2008-09-22
* Fix SmallVector's size calculation so that a size of 0 isDan Gohman2008-08-22
* Add a value_type typedef to SmallVector, to make it more compatible with STL ...Owen Anderson2008-08-15