You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
------------------------------------------------------------------------ r323390 | ericwf | 2018-01-24 16:02:48 -0800 (Wed, 24 Jan 2018) | 9 lines Fix PR35564 - std::list splice/erase incorrectly throw in debug mode. There was a bug in the implementation of splice where the container sizes were updated before decrementing one of the iterators. Afterwards, the result of decrementing the iterator was flagged as UB by the debug implementation because the container was reported to be empty. This patch fixes that bug by delaying the updating of the container sizes until after the iterators have been correctly constructed. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/libcxx/branches/release_60@334621 91177308-0d34-0410-b5e6-96231b3b80d8 |
8 years ago | |
|---|---|---|
| benchmarks | 8 years ago | |
| cmake | 8 years ago | |
| docs | 8 years ago | |
| fuzzing | 8 years ago | |
| include | 8 years ago | |
| lib | 8 years ago | |
| src | 8 years ago | |
| test | 8 years ago | |
| utils | 8 years ago | |
| www | 8 years ago | |
| .arcconfig | 8 years ago | |
| .clang-format | 9 years ago | |
| .gitignore | 9 years ago | |
| CMakeLists.txt | 8 years ago | |
| CREDITS.TXT | 8 years ago | |
| LICENSE.TXT | 9 years ago | |
| NOTES.TXT | 9 years ago | |
| TODO.TXT | 9 years ago | |
| appveyor-reqs-install.cmd | 8 years ago | |
| appveyor.yml | 9 years ago | |
docs/README.txt
libc++ Documentation ==================== The libc++ documentation is written using the Sphinx documentation generator. It is currently tested with Sphinx 1.1.3. To build the documents into html configure libc++ with the following cmake options: * -DLLVM_ENABLE_SPHINX=ON * -DLIBCXX_INCLUDE_DOCS=ON After configuring libc++ with these options the make rule `docs-libcxx-html` should be available.