Reformat linebreaks.
[oota-llvm.git] / include / llvm / ADT / SmallPtrSet.h
2015-08-10 NAKAMURA TakumiReformat linebreaks.
2015-06-23 Alexander KornienkoRevert r240137 (Fixed/added namespace ending comments...
2015-06-19 Alexander KornienkoFixed/added namespace ending comments using clang-tidy...
2015-02-15 Aaron BallmanRemoving LLVM_DELETED_FUNCTION, as MSVC 2012 was the...
2014-12-19 David BlaikieUpdate SmallPtrSet::insert's doc comment to match the...
2014-11-19 David BlaikieAdd missing header
2014-11-19 David BlaikieUpdate SetVector to rely on the underlying set's insert...
2014-08-19 Craig TopperPrevent use of the implicit copy constructor on SmallPt...
2014-06-20 Yaron KerenReverting size_type for the containers from size_type...
2014-06-20 Yaron KerenThe count() function for STL datatypes returns unsigned...
2014-03-01 Chandler Carruth[C++11] Remove the R-value reference #if usage from...
2014-02-03 Chandler CarruthIntroduce SmallPtrSetImpl<T *> which allows insert...
2014-02-03 Chandler CarruthRename the non-templated base class of SmallPtrSet to
2013-12-22 Yaron KerenThe count() function for STL datatypes returns unsigned...
2013-11-26 Chandler CarruthLift self-copy protection up to the header file and...
2013-11-20 Chandler CarruthMake the moved-from SmallPtrSet be a valid, empty,...
2013-11-20 Chandler CarruthGive SmallPtrSet move semantics when we have R-value...
2013-09-13 Benjamin KramerAdd warn_unused_result to empty() on various containers.
2013-03-29 Jean-Luc DupratSmallVector and SmallPtrSet allocations now power-of...
2013-03-29 Rafael EspindolaRevert "Fix allocations of SmallVector and SmallPtrSet...
2013-03-29 Jean-Luc DupratFix allocations of SmallVector and SmallPtrSet so they...
2012-09-16 Craig TopperUse LLVM_DELETED_FUNCTION for copy constructors and...
2012-04-18 Benjamin KramerSmallPtrSet: Reuse DenseMapInfo's pointer hash function...
2012-03-06 Benjamin KramerSmallPtrSet: Provide a more efficient implementation...
2011-03-30 Jakob Stoklund OlesenPrevent infinite growth of SmallPtrSet instances.
2011-02-15 Duncan SandsSpelling fix: consequtive -> consecutive.
2010-12-19 Nick LewyckyAdd missing standard headers. Patch by Joerg Sonnenberger!
2010-11-29 Michael J. SpencerMerge System into Support.
2010-06-30 Duncan SandsRename NextPowerOfTwo to RoundUpToPowerOfTwo.
2010-06-30 Duncan SandsClarify that the NextPowerOfTwo template is idempotent.
2010-06-30 Duncan SandsRather than giving SmallPtrSetImpl a member field Small...
2010-06-29 Duncan SandsFix a buffer overflow noticed by gcc-4.6: zero is writt...
2010-06-29 Duncan SandsNextPowerOfTwo was already used to ensure that SmallSiz...
2010-02-12 Bob WilsonFix a comment typo.
2009-10-26 Chandler CarruthMove DataTypes.h to include/llvm/System, update all...
2009-07-08 Douglas GregorMake SmallPtrSet iterators real iterators
2009-03-29 Chris Lattnerrename PointerLikeTypeInto to PointerLikeTypeTraits...
2009-03-28 Chris Lattnerdeclare everything as class to avoid angering the VC...
2009-03-28 Chris Lattneradd a traits class for SmallPtrSet that allows us to...
2009-02-07 Dan GohmanChange several SmallPtrSetImpl members from public...
2009-01-09 Misha BrukmanRemoved trailing whitespace.
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2008-03-25 Dan GohmanAdd explicit keywords.
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-11-06 Chris Lattnermake smallptrset more const and type correct, which...
2007-08-15 Anton KorobeynikovProperly use const qualifiers
2007-08-05 Chris LattnerWhen clearing a SmallPtrSet, if the set had a huge...
2007-07-27 Owen AndersonAllow SmallPtrSet to hold pointers to const data.
2007-07-17 Reid SpencerUnbreak the build by putting calls to free into the...
2007-07-16 Owen AndersonUse realloc() to (potentially) resize the contents...
2007-07-09 Owen AndersonMake the assignment operator for SmallPtrSet return...
2007-07-09 Chris Lattnerwork around an aparent gcc name resolution bug by
2007-07-09 Chris Lattnerimplement operator= for smallptrset
2007-04-14 Jeff CohenFix PR1329.
2007-04-02 Chris Lattneradd range version of insert()
2007-03-04 Chris Lattneradd iterator range version of ctor.
2007-03-02 Chris LattnerFix PR1234 by working around a compiler bug.
2007-02-07 Chris Lattnerdo not let the table fill up with tombstones.
2007-01-27 Chris Lattnerprovide a definition for uintptr_t
2007-01-27 Chris Lattneradd some missing API
2007-01-27 Chris Lattnerimplement SmallPtrSet::erase
2007-01-27 Chris LattnerFix a limitation of SmallPtrSet. Before it would asser...
2007-01-27 Chris Lattneradd some comments on the algorithm
2007-01-27 Chris LattnerAdd a new SmallSet ADT specialized for pointers.