1. f817c1c Use 'override/final' instead of 'virtual' for overridden methods by Alexander Kornienko · 11 years ago
  2. a6d7acc SmallVector: Allow initialization and assignment from initializer_list. by Benjamin Kramer · 11 years ago
  3. f9a1897 Removing LLVM_DELETED_FUNCTION, as MSVC 2012 was the last reason for requiring the macro. NFC; LLVM edition. by Aaron Ballman · 11 years ago
  4. 1d563f4 SmallVector: Move emplace_back to SmallVectorImpl. by Benjamin Kramer · 11 years ago
  5. ac92bfc [ADT] Add move operations to SmallVector<T,N> from SmallVectorImpl<T>. by Lang Hames · 11 years ago
  6. 7ce5a49 Silencing several "multiple copy constructors" warnings from MSVC; NFC. by Aaron Ballman · 11 years ago
  7. f2396e6 ADT: Add SmallVector<>::emplace_back() by Duncan P. N. Exon Smith · 11 years ago
  8. 11e0876 SmallVectorTest: Make the deleted member functions private to help MSVC users. by David Blaikie · 11 years ago
  9. 10467ca SmallVectorTest.cpp: Use LLVM_DELETED_FUNCTION. by NAKAMURA Takumi · 11 years ago
  10. 669fc86 SmallVector: support resize(N) with move-only types by David Blaikie · 11 years ago
  11. 1848660 SmallVector: Improve test coverage for insert with repetition by David Blaikie · 11 years ago
  12. 402cb2c SmallVector: More movable improvements - don't copy elements to make space when inserting repeated elements. by David Blaikie · 11 years ago
  13. ae8a932 SmallVector: Move, don't copy, elements to make space for an insertion. by David Blaikie · 11 years ago
  14. 8ef8b73 SmallVectorTest: Remove some more robust checks added in r210429 since they caught some bugs I haven't fixed yet. by David Blaikie · 11 years ago
  15. 40d4e34 Fix some more moving-from-moved-from objects issues in SmallVector by David Blaikie · 11 years ago
  16. 789df06 Ensure SmallVector::insert doesn't overwrite the last element in the range with the already-moved-from value by David Blaikie · 11 years ago
  17. 8451cdff Fix a use of uninitialized memory in SmallVector's move-assignment operator. by Douglas Gregor · 11 years ago
  18. 259a5a6 Revert "Clean up SmallString a bit" by David Blaikie · 12 years ago
  19. d028adf Clean up SmallString a bit by David Blaikie · 12 years ago
  20. 130cec2 Sort the #include lines for unittest/... by Chandler Carruth · 13 years ago
  21. 0b01261 Move the SmallVector unit tests to be type-parameterized so that we can by Chandler Carruth · 13 years ago
  22. 23a9c3e0 Bring the return value of SmallVector::insert in line with std::vector::insert. by Benjamin Kramer · 13 years ago
  23. 371b9b0 SmallVector: return a valid iterator for the rare case of inserting an empty range into a SmallVector. by Benjamin Kramer · 13 years ago
  24. 74a12a4 SmallVector: Don't rely on having an assignment operator around in push_back for POD-like types. by Benjamin Kramer · 13 years ago
  25. 229907c land David Blaikie's patch to de-constify Type, with a few tweaks. by Chris Lattner · 14 years ago
  26. 145a260 Fix a subtle issue in SmallVector. The following code did not work as expected: by Owen Anderson · 14 years ago
  27. 88c54b8 Switch attribute macros to use 'LLVM_' as a prefix. We retain the old names by Chandler Carruth · 15 years ago
  28. bfba2f1 Silence 'unused' warning. by Bill Wendling · 15 years ago
  29. 42e77df Fix SmallVector's insert to handle non-random-access iterators. by Dan Gohman · 16 years ago
  30. ed4c2eb Make this test more lenient; with SmallVector now using actually by Dan Gohman · 16 years ago
  31. 825e955 Add SmallVector::{capacity,set_size}. by Daniel Dunbar · 16 years ago
  32. 6d6023b Clarify a FIXME. by Daniel Dunbar · 16 years ago
  33. d4f5537 Use the testcase from PR2791. by Owen Anderson · 16 years ago
  34. 8d069ef Fix naming of file. by Bill Wendling · 17 years ago
  35. c56c37f Adding unittests for SmallVector. Test by Talin. by Bill Wendling · 17 years ago