1. 5586c02 Fix memory leak in converting weak_ptr to shared_ptr by Howard Hinnant · 13 years ago
  2. ec3773c Quash a whole bunch of warnings by Howard Hinnant · 13 years ago
  3. 78b6828 More windows port work by Ruben Van Boxem by Howard Hinnant · 13 years ago
  4. 8db4aca de-tabbify by Howard Hinnant · 13 years ago
  5. 14fa9f9 Windows port work by Ruben Van Boxem by Howard Hinnant · 13 years ago
  6. 3c466fc Windows patch work by Ruben Van Boxem by Howard Hinnant · 13 years ago
  7. 866569b Attempted locale refactoring. _LIBCPP_LOCALE__L_EXTENSIONS now should be defined if one has all of the xxx_l() functions. I've defined this for apple, freebsd and win32. _LIBCPP_HAS_DEFAULTRUNELOCALE should be defined if there is a _DefaultRuneLocale. I've defined this for apple and freebsd. The block of code we're trying to migrate away from is now under #ifdef __linux__. I've tested only on OS X. I hope I haven't broken things too badly elsewhere. Please let me know. by Howard Hinnant · 13 years ago
  8. efbe406 Work on Windows port by Ruben Van Boxem by Howard Hinnant · 13 years ago
  9. 1c3ec6d Another installment on debug mode. This addresses list. However this should be considered a temporary state. The API of the debug database and how vector and list use it, is unsatisfactory at the moment. It is both inefficient and overly verbose. I wanted to get this functionality checked in though. In the next day or so I'll refactor what is there in an attempt to streamline things. by Howard Hinnant · 13 years ago
  10. 6cd05ee Work on Windows port by Ruben Van Boxem by Howard Hinnant · 13 years ago
  11. 92a0700 Partial Windows port by Ruben Van Boxem by Howard Hinnant · 13 years ago
  12. 336f41a Correct change to exception.cpp from r140245 by Howard Hinnant · 13 years ago
  13. c512df1 Fixes for FreeBSD, including some fairly obvious copy-and-paste errors. by David Chisnall · 13 years ago
  14. 7608b4a Doug Gregor pointed out some problems with debug mode enabled in one TU and not another. This patch helps detect those situations and offers improved error messages to help get debug mode enabled in more TU's when it is absolutely necessary to do so. Thanks Doug. by Howard Hinnant · 13 years ago
  15. abe2628 Create multilevel debug mode by Howard Hinnant · 13 years ago
  16. 7a563db Initial checkin for debug mode (version 2) by Howard Hinnant · 13 years ago
  17. 8caf423 Correct misspelling:_LIBCPP_APPLE_STABLE_ABI -> _LIBCPP_STABLE_APPLE_ABI by Howard Hinnant · 13 years ago
  18. 23369ee Configure to get along with 2.9 clang by Howard Hinnant · 13 years ago
  19. f3907e6 Reapply 135035 with proper conditional inclusion, hopefully solving by Sean Hunt · 13 years ago
  20. 912012e http://llvm.org/bugs/show_bug.cgi?id=10353 by Howard Hinnant · 13 years ago
  21. 22ba71b http://llvm.org/bugs/show_bug.cgi?id=10346 by Howard Hinnant · 13 years ago
  22. 8d75632 Reverted to 134947. Once I got into it, I discovered there were too many problems to fix in 135035. by Howard Hinnant · 13 years ago
  23. c97da3a Implement the __nolocale functions properly so that they will work on by Sean Hunt · 13 years ago
  24. 66f2641 Toralf Niebuhr: This is just a tiny patch fixing some small (probably copy & paste) errors. by Howard Hinnant · 13 years ago
  25. 6f0342c Don't assume that wctype produces a nice mask on all platforms. On by Sean Hunt · 13 years ago
  26. e59f724 Conditionally wrap the changes from r134781. by Sean Hunt · 13 years ago
  27. 62a6ac3 Implement generalized table lookups for upper, lower, and character traits. by Sean Hunt · 13 years ago
  28. 043fe1d provide ~future_error() definition by Howard Hinnant · 13 years ago
  29. cb05a08 Fix typo by Sean Hunt · 13 years ago
  30. ac6de54 Fixing up some ABI issues by Howard Hinnant · 13 years ago
  31. 0949eed _STD -> _VSTD to avoid macro clash on windows by Howard Hinnant · 13 years ago
  32. d318d49 Patch by Petteri Räty, http://llvm.org/bugs/show_bug.cgi?id=8992 by Howard Hinnant · 13 years ago
  33. c983454 noexcept for Chapter 22 [localization]. by Howard Hinnant · 13 years ago
  34. 756a176 noexcept for <chrono>. by Howard Hinnant · 13 years ago
  35. 1694d23 noexcept for <memory>. I've added a few extension noexcept to: allocator_traits<A>::deallocate, allocaate<T>::deallocate, return_temporary_buffer, and default_delete<T>::operator()(T*) const. My rationale was: If a std-dicated noexcept function needs to call another std-defined function, that called function must be noexcept. We're all a little new to noexcept, so things like this are to be expected. Also included fix for broken __is_swappable trait pointed out by Marc Glisse, thanks Marc|. And fixed a test case for is_nothrow_destructible. Destructors are now noexcept by default| by Howard Hinnant · 13 years ago
  36. 1e15fd1 Applied noexcept to everything in [diagnostics] (Chapter 19) by Howard Hinnant · 13 years ago
  37. ed56921 Applied noexcept to everything in [language.support] (Chapter 18) by Howard Hinnant · 13 years ago
  38. 4b7a43d Added [[noreturn]] attribute everywhere it should be by Howard Hinnant · 13 years ago
  39. 6cf5d8c Chris Jefferson noted many places where function calls needed to be qualified (thanks Chris). by Howard Hinnant · 14 years ago
  40. 9a21a01 clang found a missing return statement. by Howard Hinnant · 14 years ago
  41. 2d72b1e Effort to reduce the number of exported symbols by Howard Hinnant · 14 years ago
  42. 626916f Add CMake build and fix major Linux blockers. by Michael J. Spencer · 14 years ago
  43. 7a0248d Add a couple more std-qualifers. by Howard Hinnant · 14 years ago
  44. d42c4be oops, forgot std:: by Howard Hinnant · 14 years ago
  45. 1f970ad Fix up uses of new/terminate/unexpected handlers to use the new getters. by Howard Hinnant · 14 years ago
  46. a445151 N3189 Observers for the three handler functions by Howard Hinnant · 14 years ago
  47. 7de4790 Implemented N3194 by Howard Hinnant · 14 years ago
  48. f8f8521 N3191: C++ Timeout Specification by Howard Hinnant · 14 years ago
  49. 7b2cb48 LWG 1323 by Howard Hinnant · 14 years ago
  50. b64f8b0 license change by Howard Hinnant · 14 years ago
  51. 28dbbe0 Dave Zarzycki showed how the efficiency of shared_ptr could be significantly by Howard Hinnant · 14 years ago
  52. e87ad17 Secure __next_prime from overflowing by Howard Hinnant · 14 years ago
  53. 21ef47f Changing <atomic> to follow Design A by Howard Hinnant · 14 years ago
  54. 5306d68 Convert __thread_local_data to the singleton pattern by Howard Hinnant · 14 years ago
  55. 611fdaf Still working on the basic design of <atomic>. I'm working towards a system by which the compiler only needs to define the strongest intrinsics it can. Weaker atomics in the library automatically try stronger and stronger variants, picking the weakest compiler intrinsic available. If no compiler intrinsics are available for a given operation, the library locks a mutex and does the job. Better documentation to follow... by Howard Hinnant · 14 years ago
  56. 1348fba Bug 8254 by Bernhard Rosenkraenzer by Howard Hinnant · 14 years ago
  57. d2a9251 Experimenting with a new forward fomulation (kudos Daniel Kruegler), updated insert iterators to work better with pproxies, and doubled the speed of __next_prime. by Howard Hinnant · 14 years ago
  58. c7e4d82 <rdar://problem/8279559> [libstdcxx] use new linker options to make symbols non-weak by Nick Kledzik · 14 years ago
  59. bfd5530 Fix whitespace by Howard Hinnant · 14 years ago
  60. 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
  61. 04acaca Fix typos, noticed by Clang. by Daniel Dunbar · 14 years ago
  62. e6e4d01 [futures.atomic_future] and notify_all_at_thread_exit. This completes the header <future> and all of Chapter 30 (for C++0x enabled compilers). by Howard Hinnant · 14 years ago
  63. 99be823 [futures.shared_future] by Howard Hinnant · 14 years ago
  64. 54da338 [futures.task] and [futures.async]. Requires variadics and rvalue-ref support. by Howard Hinnant · 14 years ago
  65. 47499b1 future continues ... by Howard Hinnant · 14 years ago
  66. a652172 Getting started on <future> by Howard Hinnant · 14 years ago
  67. d510977 Remove tabs by Howard Hinnant · 14 years ago
  68. 16e6e1d Fixing whitespace problems by Howard Hinnant · 14 years ago
  69. d444470 now works with -fno-exceptions and -fno-rtti by Howard Hinnant · 14 years ago
  70. ad2a7ab continued regex development... by Howard Hinnant · 14 years ago
  71. 17615b0 A good start on ecma regex's. Maybe even feature complete, not sure yet. Also an unrelated fix to is_constructible thanks to Daniel Krugler. by Howard Hinnant · 14 years ago
  72. 8c2c18d Continuing to work through regex, and updated libcxx_by_chapter.pdf with weekly test results by Howard Hinnant · 14 years ago
  73. f409d2f Finished [re.traits]. I'd like to acknowledge the help of Bjorn Reese with <regex>. by Howard Hinnant · 14 years ago
  74. 3257c98 Just getting our toes wet on <regex> by Howard Hinnant · 14 years ago
  75. 21aefc3 [util.smartptr.hash] by Howard Hinnant · 14 years ago
  76. a6a062d [string.conversions] by Howard Hinnant · 14 years ago
  77. d23b464 [conversions.string] by Howard Hinnant · 14 years ago
  78. 87d1a8a [locale.stdcvt] by Howard Hinnant · 14 years ago
  79. ed2c291 [except.nested] by Howard Hinnant · 14 years ago
  80. c326721 Completed [alg.random.shuffle]. by Howard Hinnant · 14 years ago
  81. 0bfe880 For compiling on FreeBSD by Howard Hinnant · 14 years ago
  82. adff489 patch by Jeffrey Yasskin for porting to Ubuntu Hardy. Everything was accepted except there were some bug fixes needed in <locale> for the __nolocale_* series. For the apple branch I ended up using templates instead of the var_args solution because it seemed both safer and more efficient. by Howard Hinnant · 14 years ago
  83. 76fdaa7 Add set_new_handler and nothrow implementations by Nick Kledzik · 14 years ago
  84. 804b6e7 add headers and implementation for <new>, <exception>, and <typeinfo> by Nick Kledzik · 14 years ago
  85. f5256e1 Wiped out some non-ascii characters that snuck into the copyright. by Howard Hinnant · 14 years ago
  86. bc8d3f9 libcxx initial import by Howard Hinnant · 14 years ago