Skip to content
  1. Sep 14, 2011
  2. Sep 02, 2011
  3. Sep 01, 2011
  4. Aug 28, 2011
  5. Aug 17, 2011
  6. Aug 15, 2011
  7. Aug 12, 2011
  8. Jul 31, 2011
  9. Jul 30, 2011
    • Chandler Carruth's avatar
      Revert r136547, r136545, and r136542 by removing slist. · 8fd6dc0d
      Chandler Carruth authored
      This was checked in without review. It is not clear its reasonable to
      include with libc++ at all, and needs discussion at a highlevel before
      moving forward.
      
      It's also completely lacking tests, and included several bugs in the
      implementation.
      
      llvm-svn: 136577
      8fd6dc0d
    • Chandler Carruth's avatar
      Revert r136546, which was submitted without review. · aa41ea2c
      Chandler Carruth authored
      Original change:
      Destruct elements of hash tables when removing individual entries from
      the hash_table. I think this is the correct solution to PR10507, but I'm
      not sure since this is a little bit cargo-culted. Howard, please review.
      
      llvm-svn: 136576
      aa41ea2c
    • Alexis Hunt's avatar
      Add the missing default argument for the allocator and use a cleaner · bf78786d
      Alexis Hunt authored
      implementation of previous().
      
      llvm-svn: 136547
      bf78786d
    • Alexis Hunt's avatar
      Destruct elements of hash tables when removing individual entries from · 9663c8cb
      Alexis Hunt authored
      the hash_table. I think this is the correct solution to PR10507, but I'm
      not sure since this is a little bit cargo-culted. Howard, please review.
      
      llvm-svn: 136546
      9663c8cb
    • Alexis Hunt's avatar
      Oops. That last commit was from an earlier revision of the file and was · 241bf439
      Alexis Hunt authored
      more than just a bit broken. This one should compile and run without
      infinite loops.
      
      llvm-svn: 136545
      241bf439
    • Alexis Hunt's avatar
      Include an "implementation" if SGI's slist. This was quickly hacked · 1e846797
      Alexis Hunt authored
      together to get it working with code, and is neither optimal
      (erase(Iterator, Iterator) calculates the previous iterator twice,
      rather than calculating the previous iterator of the first one, then
      advancing it until the second is found) nor complete (splice() was not
      implemented). Most of the implementation is borrowed from forward_list
      via using-declarations.
      
      llvm-svn: 136542
      1e846797
    • Alexis Hunt's avatar
      Explicitly invoke the size_type specialization of max and min. This · 83243781
      Alexis Hunt authored
      avoids bugs where, when the allocator's size_type was smaller than int,
      the multiplication or division would cause integral promotions and, with
      two different integer types as arguments, deduction of the template
      arguments would fail.
      
      llvm-svn: 136540
      83243781
    • Alexis Hunt's avatar
      Add a new hash class in __gnu_ext for the extension containers. There · 8d2ed566
      Alexis Hunt authored
      are two motivations for this.
      
      First, this allows users who are specializing __gnu_ext::hash to
      continue doing so without changing their code.
      
      Second, SGI specifies hash overloads for char* and const char* that
      perform a hash of the string, not of the pointer.
      
      In order to support this, the hashing code for string is factored out.
      
      llvm-svn: 136539
      8d2ed566
    • Alexis Hunt's avatar
      Add two missing members from the extension hash containers. The first is · fe473ae2
      Alexis Hunt authored
      the type name 'data_type', which is specified by the SGI spec as being
      the correct type name for the mapped type. The second is an overload of
      insert found in standard containers, taking an iterator as a 'hint'
      (which we ignore in the standard containers as well). libstdc++'s
      implementation includes these overloads, and they are needed to make
      insert_iterator work (which I suspect is the real motivation for
      including them in the standard containers).
      
      The motivation for including these overloads of insert and leaving the
      mapped_type typedef is to make it easier for clients to migrate to the
      standard containers.
      
      llvm-svn: 136538
      fe473ae2
  10. Jul 29, 2011
  11. Jul 28, 2011
  12. Jul 27, 2011
  13. Jul 25, 2011
  14. Jul 24, 2011
  15. Jul 23, 2011
  16. Jul 18, 2011
  17. Jul 15, 2011
  18. Jul 13, 2011
  19. Jul 12, 2011
  20. Jul 09, 2011
Loading