Skip to content
  1. Jul 30, 2011
    • 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
  2. Jul 29, 2011
  3. Jul 28, 2011
  4. Jul 27, 2011
  5. Jul 25, 2011
  6. Jul 24, 2011
  7. Jul 23, 2011
  8. Jul 22, 2011
  9. Jul 19, 2011
  10. Jul 18, 2011
  11. Jul 15, 2011
  12. Jul 14, 2011
  13. Jul 13, 2011
  14. Jul 12, 2011
  15. Jul 09, 2011
  16. Jul 08, 2011
  17. Jul 07, 2011
  18. Jul 06, 2011
  19. Jul 05, 2011
  20. Jul 04, 2011
  21. Jul 02, 2011
Loading