Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add a test for LWG#2466: allocator_traits::max_size() default behavior is ↵ | Marshall Clow | 2015-10-25 | 1 | -2/+1 | |
| | | | | | | incorrect llvm-svn: 251252 | |||||
* | Fix LWG#2127: Move-construction with raw_storage_iterator. | Marshall Clow | 2015-10-25 | 1 | -1/+1 | |
| | | | | llvm-svn: 251247 | |||||
* | Fix LWG#2244: basic_istream::seekg | Marshall Clow | 2015-10-25 | 1 | -1/+1 | |
| | | | | llvm-svn: 251246 | |||||
* | Update C++ status from Kona | Marshall Clow | 2015-10-25 | 2 | -1/+56 | |
| | | | | llvm-svn: 251220 | |||||
* | Update issues status | Eric Fiselier | 2015-10-14 | 1 | -2/+2 | |
| | | | | llvm-svn: 250336 | |||||
* | Link to new documentation from existing homepage | Eric Fiselier | 2015-10-14 | 1 | -0/+10 | |
| | | | | llvm-svn: 250325 | |||||
* | Mark 2447 and 2466 as completed. | Marshall Clow | 2015-10-12 | 1 | -5/+5 | |
| | | | | llvm-svn: 250061 | |||||
* | Mark 2244 as 'Patch Ready', 2477 and 2487 as 'Complete' | Marshall Clow | 2015-10-07 | 1 | -7/+7 | |
| | | | | llvm-svn: 249595 | |||||
* | Updated issue 2476 | Marshall Clow | 2015-10-06 | 1 | -2/+2 | |
| | | | | llvm-svn: 249461 | |||||
* | Add comments for LWG issues 2219 and 2367 | Eric Fiselier | 2015-10-06 | 1 | -2/+2 | |
| | | | | llvm-svn: 249372 | |||||
* | Mark 2259 and 2473 as complete. Add some more notes | Marshall Clow | 2015-10-05 | 1 | -9/+9 | |
| | | | | llvm-svn: 249363 | |||||
* | Mark 2380 and 2384 as complete; no changes needed | Marshall Clow | 2015-10-05 | 1 | -4/+4 | |
| | | | | llvm-svn: 249354 | |||||
* | Patch for 2466 is ready | Marshall Clow | 2015-10-05 | 1 | -2/+2 | |
| | | | | llvm-svn: 249352 | |||||
* | Mark a couple more issues 'ready' | Marshall Clow | 2015-10-05 | 1 | -6/+6 | |
| | | | | llvm-svn: 249348 | |||||
* | Mark 2072 as complete; we already do this | Marshall Clow | 2015-10-05 | 1 | -2/+2 | |
| | | | | llvm-svn: 249347 | |||||
* | Patch ready for 2127 | Marshall Clow | 2015-10-05 | 1 | -2/+2 | |
| | | | | llvm-svn: 249345 | |||||
* | Add comments about the issues | Marshall Clow | 2015-10-05 | 1 | -4/+42 | |
| | | | | llvm-svn: 249334 | |||||
* | Private page for status of Kona issues and papers. Will be deleted after the ↵ | Marshall Clow | 2015-10-05 | 1 | -0/+109 | |
| | | | | | | Kona meeting. Not to be linked to from other pages. llvm-svn: 249333 | |||||
* | Implement LWG#2063, and update the issues links to point to the github ↵ | Marshall Clow | 2015-10-05 | 2 | -213/+213 | |
| | | | | | | generated pages llvm-svn: 249325 | |||||
* | Implementation of Boyer-Moore and Boyer-Moore-Horspool searchers for the LFTS. | Marshall Clow | 2015-09-08 | 1 | -1/+1 | |
| | | | | llvm-svn: 247036 | |||||
* | Update some links so that they don't point at the (private) WG21 Wiki | Marshall Clow | 2015-08-05 | 1 | -3/+3 | |
| | | | | llvm-svn: 244047 | |||||
* | Update references to lists.llvm.org | Tanya Lattner | 2015-08-05 | 10 | -22/+22 | |
| | | | | llvm-svn: 244003 | |||||
* | Mark any as done and comment out extra methods until speaking to Marshall | Eric Fiselier | 2015-07-31 | 1 | -1/+1 | |
| | | | | llvm-svn: 243729 | |||||
* | Reapply working parts of CMake cleanup. | Eric Fiselier | 2015-07-30 | 1 | -8/+12 | |
| | | | | | | | This patch adds the working parts of r243503. The difference with this patch is that it doesn't include the HandleLLVMOptions.cmake file. llvm-svn: 243698 | |||||
* | Revert recent CMake changes again due to failing compiler-rt builds | Eric Fiselier | 2015-07-29 | 1 | -12/+8 | |
| | | | | llvm-svn: 243593 | |||||
* | Recommit r243503 "[libcxx] Cleanup CMake configuration and integrate with LLVM" | Eric Fiselier | 2015-07-29 | 1 | -8/+12 | |
| | | | | | | | | | This change was reverted in r243550 because it broke clang-format builds (see PR24306). This patch recommits a fixed version of the original. llvm-svn: 243574 | |||||
* | Revert r243503 "[libcxx] Cleanup CMake configuration and integrate with LLVM" | Hans Wennborg | 2015-07-29 | 1 | -12/+8 | |
| | | | | | | This caused clang-format to stop linking on Mac; see PR24306. llvm-svn: 243550 | |||||
* | [libcxx] Cleanup CMake configuration and integrate with LLVM | Eric Fiselier | 2015-07-29 | 1 | -8/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: This patch contains the following changes: 1. Require that libc++ can find a LLVM source directory. This is done the same way as `libc++abi` currently does. 2. Cleanup ugly configuration code in CMakeLists.txt by using `add_flags`, `add_flags_if`, and `add_flags_if_supported` macros. The goals for this patch are: 1. Help libc++ be more consistent with how LLVM handles CMake options (see PR23670 PR23671). 2. Make it easier to use sanitizers using the `LLVM_USE_SANITIZER` option. 3. Make libc++'s CMakeLists.txt file easier to understand and change. 4. Move towards allowing libc++ to create Sphinx documentation (see http://efcs.ca/libcxx-docs). 5. Move towards allowing libc++ to use other LLVM utilities such as `not` and `FileCheck`. Reviewers: mclow.lists, jroelofs, danalbert Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D11308 llvm-svn: 243503 | |||||
* | Update the status of the TS'es | Marshall Clow | 2015-07-21 | 1 | -6/+5 | |
| | | | | llvm-svn: 242788 | |||||
* | Implement n4169 - Add invoke function template | Eric Fiselier | 2015-07-14 | 1 | -1/+1 | |
| | | | | llvm-svn: 242195 | |||||
* | Mark LWG2308 as complete; fix link. No code change necessary. | Marshall Clow | 2015-07-14 | 1 | -1/+1 | |
| | | | | llvm-svn: 242189 | |||||
* | The rest of N4279 and LWG#2464 - for unordered_map | Marshall Clow | 2015-07-07 | 1 | -2/+2 | |
| | | | | llvm-svn: 241555 | |||||
* | Mark LWG#2420 as complete. Eric did this in r228705. | Marshall Clow | 2015-07-06 | 1 | -1/+1 | |
| | | | | llvm-svn: 241491 | |||||
* | Mark N4508, LWG#2407, and LWG#2470 as complete. I don't see that 2470 ↵ | Marshall Clow | 2015-06-30 | 1 | -3/+3 | |
| | | | | | | requires any changes to the library. llvm-svn: 241111 | |||||
* | Mark LWG#2266 as complete. This is a tightening up the wording; no code ↵ | Marshall Clow | 2015-06-30 | 1 | -1/+1 | |
| | | | | | | changes required. llvm-svn: 241064 | |||||
* | Mark LWG#2439 as complete. This is a tightening up the wording; no code ↵ | Marshall Clow | 2015-06-29 | 1 | -1/+1 | |
| | | | | | | changes required. llvm-svn: 241013 | |||||
* | Mark a couple of features as 'in progress' | Marshall Clow | 2015-06-23 | 1 | -2/+2 | |
| | | | | llvm-svn: 240456 | |||||
* | LWG2442: call_once() shouldn't DECAY_COPY(). Patch from K-Ballo. | Eric Fiselier | 2015-06-13 | 1 | -1/+1 | |
| | | | | | | | This patch fixes LWG issue 2422 by removing the DECAY_COPY from call once. The review can be found here: http://reviews.llvm.org/D10191 llvm-svn: 239654 | |||||
* | Implement the first part of N4258 - allocator_traits<X>::is_always_equal. ↵ | Marshall Clow | 2015-06-02 | 1 | -1/+1 | |
| | | | | | | Also fixes PR#23723 llvm-svn: 238848 | |||||
* | Implement uncaught_exceptions() using the newly added hooks in libc++abi, ↵ | Marshall Clow | 2015-06-02 | 1 | -1/+1 | |
| | | | | | | when available llvm-svn: 238846 | |||||
* | Add N4259 to the list of papers from Lenexa. Update links to point at public ↵ | Marshall Clow | 2015-05-27 | 1 | -7/+8 | |
| | | | | | | repos. llvm-svn: 238340 | |||||
* | Add tests to ensure that string/vector/array have contiguous iterators - ↵ | Marshall Clow | 2015-05-26 | 1 | -1/+1 | |
| | | | | | | which they did. Mark N4284 as complete llvm-svn: 238233 | |||||
* | Mark N4366 as complete. libc++ has done this since 2012 | Marshall Clow | 2015-05-26 | 1 | -1/+1 | |
| | | | | llvm-svn: 238207 | |||||
* | Implement LWG2433: uninitialized_copy()/etc. should tolerate overloaded ↵ | Marshall Clow | 2015-05-19 | 1 | -1/+1 | |
| | | | | | | operator& llvm-svn: 237699 | |||||
* | Mark N4510 as complete; we already do this | Marshall Clow | 2015-05-18 | 1 | -2/+2 | |
| | | | | llvm-svn: 237638 | |||||
* | Add support for N4389 - std::bool_constant | Marshall Clow | 2015-05-18 | 1 | -1/+1 | |
| | | | | llvm-svn: 237636 | |||||
* | Update C++1z status; mark issues 2059,2369,2415,2454 and 2458 as 'complete'. ↵ | Marshall Clow | 2015-05-18 | 1 | -5/+5 | |
| | | | | | | I have committed patches for all of them llvm-svn: 237606 | |||||
* | Update C++1z status; mark all the issues that require no library change as ↵ | Marshall Clow | 2015-05-18 | 1 | -22/+21 | |
| | | | | | | 'complete' llvm-svn: 237604 | |||||
* | Update C++1z status with issues and papers from Lenexa | Marshall Clow | 2015-05-18 | 1 | -3/+45 | |
| | | | | llvm-svn: 237596 | |||||
* | Implement std::experimental::sample. | Evgeniy Stepanov | 2015-05-13 | 1 | -1/+1 | |
| | | | | | | | Following specification in "C++ Extensions for Library Fundamentals": http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4480.html#alg.random.sample llvm-svn: 237264 |