1. 48282b6 Implement P0887: The identity metafunction by Marshall Clow · 6 years ago
  2. db9b3d8 Update version to 8.0.0svn: cmake, includes files and docs by Hans Wennborg · 6 years ago
  3. f7410f4 [libc++] Fix GCC 7.2.0 macro redefinition warning by Louis Dionne · 6 years ago
  4. 80f0ca0 [libc++] Fix build failures after merging <charconv> by Zhihao Yuan · 6 years ago
  5. dc38e97 [libc++][C++17] Elementary string conversions for integral types by Zhihao Yuan · 6 years ago
  6. 6952d14 [libc++] Remove _LIBCPP_BUILDING_XXX macros, which are redundant since _LIBCPP_BUILDING_LIBRARY by Louis Dionne · 6 years ago
  7. 36fc737 First half of C++17's splicing maps and sets by Erik Pilkington · 6 years ago
  8. ea96e3a Final bit of P0063 - make sure that aligned_alloc is available when the underlying C library supports it by Marshall Clow · 6 years ago
  9. 4983a7a Test for the presence of a bunch of new macros for c++17. These macros come from C11. Part of P0063 by Marshall Clow · 6 years ago
  10. 8a16d40 import timespec and timespec_get into namespace std if we're under c++17 or later AND the underlying C library has them. Fixes PR#38220, but doesn't implement all of P0063 yet. by Marshall Clow · 6 years ago
  11. 1bef51a Introduce a new test macro TEST_HAS_C11_FEATURES which is set when the underlying C library has C11 features. In C++17, we use those features. <__config> defines a similar macro, _LIBCPP_HAS_C11_FEATURES, but we don't want to use that in the library-independent parts of the tests, so define the new one. Also add a libc++-specific test to make sure the two stay in sync. by Marshall Clow · 6 years ago
  12. decf28e Code cleanup - change naked 'throw' expressions to call helpre function '__throw_future_error'. The behavior change is that if you build libc++ with exceptions disabled, and then use that in a program that sets the value of the future twice (for example), it will now abort instead of behaving unpredictably. by Marshall Clow · 6 years ago
  13. 379cbeb [libcxx] fix `>> 42` UB in <experimental/simd> by Tim Shen · 6 years ago
  14. 154f393 Re-apply "[libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to." by Tim Shen · 6 years ago
  15. b6244cf Revert "[libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to." by Tim Shen · 6 years ago
  16. 3732995 [libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to. by Tim Shen · 6 years ago
  17. 8634f6f [libc++] Exclude posix_l/strtonum fallback inclusion for newlib > 2.4 by Jordan Rupprecht · 6 years ago
  18. 67fff22 [libc++] Introduce _LIBCPP_HIDE_FROM_ABI to replace _LIBCPP_INLINE_VISIBILITY by Louis Dionne · 6 years ago
  19. 7e850a8 Move Filesystem namespace definition out of a clang specific ifdef block. by Eric Fiselier · 6 years ago
  20. bc3f403 Add libc++fs to the test deps, and not to the target 'cxx'. by Eric Fiselier · 6 years ago
  21. 0be5527 Attempt to unbreak *all the bots* by Eric Fiselier · 6 years ago
  22. 789c372 Correctly mark the Filesystem status as complete. by Eric Fiselier · 6 years ago
  23. a0866c5 Implement <filesystem> by Eric Fiselier · 6 years ago
  24. 47d2a98 [CMake] Don't generate linker script only when shared library isn't statically linked by Petr Hosek · 6 years ago
  25. 14535e3 Copy LLVM CMake configuration for CMake Policy CMP0068 by Eric Fiselier · 6 years ago
  26. 8928a12 Be more consistent about which bool value means an error occurred by Eric Fiselier · 6 years ago
  27. d1759cf Cleanup the last_write_time internals by Eric Fiselier · 6 years ago
  28. cff3d7b Correct comment about stat truncating st_mtimespec to seconds by Eric Fiselier · 6 years ago
  29. 94d2ed5 Fix attribute placement WRT extern C by Eric Fiselier · 6 years ago
  30. 6655abb Workaround OS X 10.11 behavior where stat truncates st_mtimespec to seconds. by Eric Fiselier · 6 years ago
  31. 8940394 Add print statements to help debugging by Eric Fiselier · 6 years ago
  32. 6b101f1 [libc++] Add hack to allow ubsan to work w/o compiler-rt (__muloti4 is undefined) by Eric Fiselier · 6 years ago
  33. 104b331 [libc++] Follow-up to r337968: use an explicit cast as suggested by Eric by Alex Lorenz · 6 years ago
  34. 162ce3f [CMake] Don't install c++abi headers in standalone libc++ build by Petr Hosek · 6 years ago
  35. 98e5322 Work around GCC bug in constexpr function by Eric Fiselier · 6 years ago
  36. 39ee0c6 Fix GCC build in C++14 w/o c++14 constexpr by Eric Fiselier · 6 years ago
  37. 0c29afa Remove test which shouldn't have been committed by Eric Fiselier · 6 years ago
  38. d2992ce Fix failing test under C++14 by Eric Fiselier · 6 years ago
  39. 7450cbb [libc++] Follow-up to r337960: specify lambda's return type to avoid by Alex Lorenz · 6 years ago
  40. 6ac9255 Make <experimental/filesystem> compile with gcc 4.8.5 by Eric Fiselier · 6 years ago
  41. 81872e9 [libc++] Use __int128_t to represent file_time_type. by Eric Fiselier · 6 years ago
  42. a1ae56c [libc++] Factor duplicate code into function templates by Louis Dionne · 6 years ago
  43. b52e084 [windows] Fix warning about comparing ints of different signs by Martin Storsjo · 6 years ago
  44. d9cfbf1 [NFC] Fix grammatical mistakes in libc++ FileTimeType design docs by Louis Dionne · 6 years ago
  45. e428b57 Fix diagnostic test to tolerate Clang diagnosing it as well. by Eric Fiselier · 6 years ago
  46. ed7123b Fix another typo in the FileTimeType docs by Eric Fiselier · 6 years ago
  47. f562b9b Fix typos, spelling, and grammar in the FileTimeType design docs. by Eric Fiselier · 6 years ago
  48. 8410c81 Fix bugs in create_directory implementation. by Eric Fiselier · 6 years ago
  49. bb00305 Fix missing includes in format_string.hpp helper by Eric Fiselier · 6 years ago
  50. d3e32d2 New test support for comparisons. Reviewed as https://reviews.llvm.org/D49773 by Marshall Clow · 6 years ago
  51. 2493db4 Make <experimental/filesystem> explicitly require C++11. by Eric Fiselier · 6 years ago
  52. 0fbaa11 Ensure path::iterator and PathParser share the same enumeration values. by Eric Fiselier · 6 years ago
  53. 88dfb6d Add design docs for upcoming file_time_type change. by Eric Fiselier · 6 years ago
  54. d2e2a02 Mark <span> as complete by Marshall Clow · 6 years ago
  55. 89d973a [CMake] Option to control whether shared/static library is installed by Petr Hosek · 6 years ago
  56. 83f3cdc [CMake] Fix the setting of LIBCXX_HEADER_DIR in standalone build by Petr Hosek · 6 years ago
  57. 2be41bb Stop wrapping __has_include in another macro by Alexander Richardson · 6 years ago
  58. ad7e935 Fix use of incorrect _LIBCXX macro (should be _LIBCPP). by Eric Fiselier · 6 years ago
  59. 44ef94a Reland "[CMake] Support statically linking dependencies only to shared or static library" by Petr Hosek · 6 years ago
  60. 39bc5e7 fix nesting of namespace and standard-version check. Also include <__config> by Marshall Clow · 6 years ago
  61. dfd0874 Disable 'suggest braces' warnings for std::array in tests by Marshall Clow · 6 years ago
  62. fbd3e84 Implement <span>. Reviewed as https://reviews.llvm.org/D49338 by Marshall Clow · 6 years ago
  63. 4b61d89 Revert r337727 as it caused Darwin bot failures by Alex Lorenz · 6 years ago
  64. b3e55b2 Handle DT_UNKNOWN correctly during directory iteration. by Eric Fiselier · 6 years ago
  65. 2c11635 Recommit "Use possibly cached directory entry values when performing recursive directory iteration." by Eric Fiselier · 6 years ago
  66. f581ed2 Fix accidentally removed test. by Eric Fiselier · 6 years ago
  67. 7485d57 Revert "Use possibly cached directory entry values when performing recursive directory iteration." by Eric Fiselier · 6 years ago
  68. 80412b5 [CMake] Fix the setting of LIBCXX_HEADER_DIR by Heejin Ahn · 6 years ago
  69. 36bf18f Cleanup unnecessary conversions in filesystem. by Eric Fiselier · 6 years ago
  70. 6826553 Cleanup name qualification in the filesystem internals. by Eric Fiselier · 6 years ago
  71. 78c3548 Revert "[CMake] Support statically linking dependencies only to shared or static library" by Petr Hosek · 6 years ago
  72. 04ce4ae Use possibly cached directory entry values when performing recursive directory iteration. by Eric Fiselier · 6 years ago
  73. 24acfd8 [CMake] Support statically linking dependencies only to shared or static library by Petr Hosek · 6 years ago
  74. ba01d96 Fix use of C++14 syntax in C++11 filesystem tests. by Eric Fiselier · 6 years ago
  75. a0a39e5 Work around various GCC 4.9 build errors by Eric Fiselier · 6 years ago
  76. 0ddb77a Implement filesystem_error::what() and improve reporting. by Eric Fiselier · 6 years ago
  77. e14f038 Workaround bug in GCC trunk. by Eric Fiselier · 6 years ago
  78. fb03277 Harden copy_file even more. by Eric Fiselier · 6 years ago
  79. 1061b65 fix test failures with older clang versions by Eric Fiselier · 6 years ago
  80. 70c866b Implement a better copy_file. by Eric Fiselier · 6 years ago
  81. 4d34ec0 [CMake] Install C++ ABI headers into the right location by Petr Hosek · 6 years ago
  82. 7b1b6ca adjust incorrect comment by Eric Fiselier · 6 years ago
  83. 77c9cf4 Fix two test failures in <experimental/filesystem> by Eric Fiselier · 6 years ago
  84. 0f8ee94 Use _LIBCPP_UNREACHABLE to convince GCC that non-void functions actually always return by Eric Fiselier · 6 years ago
  85. f8bfc79 cleanup test assertion inside library by Eric Fiselier · 6 years ago
  86. e274f43 [libc++] Implement Directory Entry Caching -- Sort of. by Eric Fiselier · 6 years ago
  87. c69e1a0 [libc++] Allow running ABI list tests with different ABI versions by Louis Dionne · 6 years ago
  88. f1f54dc Update the synopsis for <chrono> for C++20. No functional change. by Marshall Clow · 6 years ago
  89. ffbb91b Address "always inline function is not always inlinable" warning with GCC. by Eric Fiselier · 6 years ago
  90. 6e089f8 Fix PR38160 - init_priority attribute not supported by GCC on Apple. by Eric Fiselier · 6 years ago
  91. a40a6b3 [CMake] Use correct variable as header install prefix by Petr Hosek · 6 years ago
  92. 0d0b972 Mark __equal_to 's operations as constexpr. by Marshall Clow · 6 years ago
  93. d7d3d8b Mark one more __wrap_iter operation as constexpr. by Marshall Clow · 6 years ago
  94. 1548d77 wrap _LIBCPP_HAS_NO_CXX14_CONSTEXPR in defined(...) by Marshall Clow · 6 years ago
  95. e585baf Shot in the dark to fix gcc 4.9 / c++11 build by Marshall Clow · 6 years ago
  96. c005c7e Make internal class __wrap_iter constexpr when not using libc++'s debugging mode. Introduce a new macro _LIBCPP_CONSTEXPR_IF_NODEBUG to mark this. by Marshall Clow · 6 years ago
  97. 9765ed0 Fix a couple of 'unused variable' warnings in a vector test. NFC. by Marshall Clow · 6 years ago
  98. fbb1e61 Turns out that wide literals U"xxx" and u"xxx" are c++11 and later. by Marshall Clow · 6 years ago
  99. 5423805 [libc++] Take 2: Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISIBILITY by Louis Dionne · 6 years ago
  100. 88709a3 Same reversed ifdef happened twice. Test fix only, NFC to the library. by Marshall Clow · 6 years ago