1. 9648447 Second part of P0482 - char8_t. Reviewed as https://reviews.llvm.org/D55308 by Marshall Clow · 6 years ago
  2. caae3ec [libcxx] Don't depend on availability markup to provide the streams in the dylib by Louis Dionne · 6 years ago
  3. 580cde0 [libc++] Implement P0487R1 - Fixing operator>>(basic_istream&, CharT*) by Zhihao Yuan · 6 years ago
  4. 3845a65 [libcxx] Remove _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY by Louis Dionne · 6 years ago
  5. a1ae56c [libc++] Factor duplicate code into function templates by Louis Dionne · 7 years ago
  6. 68050ff [libcxx] Make std::basic_istream::get 0-terminate input array in case of error. by Volodymyr Sapsai · 7 years ago
  7. 2744cdf [libcxx] Make std::basic_istream::getline 0-terminate input array in case of error. by Volodymyr Sapsai · 7 years ago
  8. 018a3d5 [Libc++] Use #pragma push_macro/pop_macro to better handle min/max on Windows by Eric Fiselier · 8 years ago
  9. 907c119 Add markup for libc++ dylib availability by Mehdi Amini · 8 years ago
  10. e915b5c Cleanup _LIBCPP_HAS_NO_<c++11-feature> in the input.output library by Eric Fiselier · 8 years ago
  11. 8eb066a Replace _LIBCPP_HAS_NO_DELETED_FUNCTIONS with _LIBCPP_CXX03_LANG by Eric Fiselier · 8 years ago
  12. c3589a8 [NFC] Rename _LIBCPP_TYPE_VIS_ONLY to _LIBCPP_TEMPLATE_VIS by Eric Fiselier · 8 years ago
  13. 50f6579 fix sign comparison warnings by Eric Fiselier · 8 years ago
  14. 6dbed46 [libc++] Add _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY to support GCC ABI compatibility by Eric Fiselier · 8 years ago
  15. 833d644 [libc++] Fix and document visibility attributes for Clang, GCC and Windows. by Eric Fiselier · 8 years ago
  16. 7f630e8 Implement LWG2328. Rvalue stream extraction should perfect forward. by Eric Fiselier · 9 years ago
  17. a80de49 Constuct a sentry object in istream::readsome, and handle failures appropriately. Fixes PR#28217. by Marshall Clow · 9 years ago
  18. 4c7ee80 Revert "Remove visibility attributes from out-of-class method definitions in iostreams." by Evgeniy Stepanov · 9 years ago
  19. 9b45238 Remove visibility attributes from out-of-class method definitions in iostreams. by Evgeniy Stepanov · 9 years ago
  20. dbef2bb Fix LWG#2244: basic_istream::seekg by Marshall Clow · 9 years ago
  21. bb9902e K-ballo pointed out *another* mistype in my change by Marshall Clow · 10 years ago
  22. d1fae17 Forgot 'const' on my last checkin by Marshall Clow · 10 years ago
  23. 546eca8 Some of the synopsis was left out of these headers, and the copy construction/assignment should have been marked as deleted. Done. No functionality change, because the base class (base_ios) was marked as non-copyable already. by Marshall Clow · 10 years ago
  24. 76a8670 LWG issue 2341; Make the two variants of basic_ostream::seekp and basic_istream::seekg behave consistently; update tests to make sure by Marshall Clow · 11 years ago
  25. 0f678bd Nico Rieck: this patch series fixes visibility issues on Windows as explained in <http://lists.cs.uiuc.edu/pipermail/cfe-dev/2013-August/031214.html>. by Howard Hinnant · 12 years ago
  26. 11b8718 In istream::ignore, check the delimeter as an int_type, not as a char_type, so as to correctly handle EOF. This fixes http://llvm.org/bugs/show_bug.cgi?id=16427 by Howard Hinnant · 12 years ago
  27. 83eade6 No functionality change at this time. I've split _LIBCPP_VISIBLE up into two flags: _LIBCPP_TYPE_VIS and _LIBCPP_FUNC_VIS. This is in preparation for taking advantage of clang's new __type_visibility__ attribute. by Howard Hinnant · 12 years ago
  28. cc7bdae Have basic_istream::read call sgetn intead of sbumpc individual characters. This addresses http://llvm.org/bugs/show_bug.cgi?id=15427. by Howard Hinnant · 12 years ago
  29. ee717d8 Hyeon-Bin Jeong: readsome() need to reset gcount to zero. This fixes http://llvm.org/bugs/show_bug.cgi?id=14670. by Howard Hinnant · 12 years ago
  30. ff92677 Provide a way to disable use of extern templates in libc++. This is intended for the clients of libc++, not the libc++ build. The dylib should always contain the extern templates. To disable the client needs to put -D'_LIBCPP_EXTERN_TEMPLATE(...)=' on the command line. by Howard Hinnant · 12 years ago
  31. 73c85c7 peek should set eofbit if sgetc() returns eof. by Howard Hinnant · 12 years ago
  32. 33be35e Dimitry Andric: many visibility fixes. Howard: Much appreciated. Can you send me a patch to CREDITS.TXT? by Howard Hinnant · 12 years ago
  33. 37bdf0e Have basic_istream seekg, putback and unget first clear eofbit. Fixes http://llvm.org/bugs/show_bug.cgi?id=13089. by Howard Hinnant · 13 years ago
  34. 7786188 Modernize conversion to bool to the explicit bool conversion operator (library wide). This fixes http://llvm.org/bugs/show_bug.cgi?id=12058. by Howard Hinnant · 13 years ago
  35. ec3773c Quash a whole bunch of warnings by Howard Hinnant · 13 years ago
  36. 9996844 Further macro protection by replacing _[A-Z] with _[A-Z]p by Howard Hinnant · 13 years ago
  37. 66c6f97 Add protection from min/max macros by Howard Hinnant · 13 years ago
  38. 08e1747 Windows support by Ruben Van Boxem. by Howard Hinnant · 13 years ago
  39. b97de44 Fix <rdar://problem/10256836> getline of an empty string mistakenly causes failure by Howard Hinnant · 13 years ago
  40. 92a836c Reimplemented much of <istream> such that single character extractions do not check to see if this is the last character in the stream and thus never set eofbit. This fixes http://llvm.org/bugs/show_bug.cgi?id=10817 . This fix requires a recompiled libc++.dylib to be fully implemented. The recompiled libc++.dylib is ABI compatible with that shipped on Lion. by Howard Hinnant · 13 years ago
  41. ac6de54 Fixing up some ABI issues by Howard Hinnant · 14 years ago
  42. 0949eed _STD -> _VSTD to avoid macro clash on windows by Howard Hinnant · 14 years ago
  43. df85e57 Fixed two problems found by Chris Jefferson: Made operator>> for char consistent with gcc. Opened an LWG issue on this one. 2) Renamed some private typedefs which are causing boost grief. by Howard Hinnant · 14 years ago
  44. 6cf5d8c Chris Jefferson noted many places where function calls needed to be qualified (thanks Chris). by Howard Hinnant · 14 years ago
  45. b64f8b0 license change by Howard Hinnant · 14 years ago
  46. 68a8e90 visibility-decoration. by Howard Hinnant · 14 years ago
  47. 73d21a4 Changed __config to react to all of clang's currently documented has_feature flags, and renamed _LIBCPP_MOVE to _LIBCPP_HAS_NO_RVALUE_REFERENCES to be more consistent with the rest of the libc++'s flags, and with clang's nomenclature. by Howard Hinnant · 14 years ago
  48. 324bb03 Fixing whitespace problems by Howard Hinnant · 15 years ago
  49. f5256e1 Wiped out some non-ascii characters that snuck into the copyright. by Howard Hinnant · 15 years ago
  50. bc8d3f9 libcxx initial import by Howard Hinnant · 15 years ago