Skip to content
  1. Sep 03, 2013
  2. Sep 02, 2013
  3. Aug 31, 2013
  4. Aug 30, 2013
  5. Aug 29, 2013
  6. Aug 27, 2013
  7. Aug 26, 2013
  8. Aug 24, 2013
  9. Aug 23, 2013
  10. Aug 22, 2013
  11. Aug 21, 2013
  12. Aug 14, 2013
  13. Aug 13, 2013
  14. Aug 12, 2013
  15. Aug 09, 2013
    • Howard Hinnant's avatar
      Add a check for arrays of unknown bounds to is_destructible. This fixes... · 6afbc442
      Howard Hinnant authored
      Add a check for arrays of unknown bounds to is_destructible.  This fixes http://llvm.org/bugs/show_bug.cgi?id=16839
      
      llvm-svn: 188080
      6afbc442
    • Howard Hinnant's avatar
      Partial implementation of N3665. This paper was not voted into the C++1y... · d7cda068
      Howard Hinnant authored
      Partial implementation of N3665.  This paper was not voted into the C++1y draft. However I was looking at it and with some experimentation realized that I could partially implement it, and at the same time offer a performance optimization to cout.  I simply added an xsputn override to the cout filebuf.  The override does nothing special at all if there is a non-trivial codecvt installed.  However if the codecvt returns true for always_noconv(), then this function can dump an entire string to fwrite, instead of doing it a character at a time under overflow().  This just makes sense.  I stopped short of a full implementation of N3665 because in order to do so, xsputn would have to allocate a buffer when always_noconv() returned false, and I don't want to go to that expense.
      
      llvm-svn: 188077
      d7cda068
  16. Aug 08, 2013
  17. Aug 07, 2013
Loading