forked from OSchip/llvm-project
![]() While the std::allocator<void> specialization was deprecated by https://wg21.link/p0174#2.2, the *use* of std::allocator<void> by users was not. The intent was that std::allocator<void> could still be used in C++17 and C++20, but starting with C++20 (with the removal of the specialization), std::allocator<void> would use the primary template. That intent was called out in wg21.link/p0619r4#3.9. As a result of this patch, _LIBCPP_ENABLE_CXX20_REMOVED_ALLOCATOR_MEMBERS will also not control whether the explicit specialization is provided or not. It shouldn't matter, since in C++20, one can simply use the primary template. Fixes http://llvm.org/PR50299 Differential Revision: https://reviews.llvm.org/D104323 |
||
---|---|---|
.. | ||
DesignDocs | ||
Helpers | ||
AddingNewCIJobs.rst | ||
BuildingLibcxx.rst | ||
CMakeLists.txt | ||
Contributing.rst | ||
Cxx1yStatus.rst | ||
Cxx1yStatusIssuesStatus.csv | ||
Cxx1yStatusPaperStatus.csv | ||
Cxx1zStatus.rst | ||
Cxx1zStatusIssuesStatus.csv | ||
Cxx1zStatusPaperStatus.csv | ||
Cxx2aStatus.rst | ||
Cxx2aStatusIssuesStatus.csv | ||
Cxx2aStatusPaperStatus.csv | ||
Cxx2bStatus.rst | ||
Cxx2bStatusIssuesStatus.csv | ||
Cxx2bStatusPaperStatus.csv | ||
FeatureTestMacroTable.rst | ||
FormatIssuePaperStatus.csv | ||
FormatProposalStatus.csv | ||
FormatStatus.rst | ||
Makefile.sphinx | ||
OneRangesProposalStatus.csv | ||
README.txt | ||
RangesIssuePaperStatus.csv | ||
RangesStatus.rst | ||
ReleaseNotes.rst | ||
TestingLibcxx.rst | ||
UsingLibcxx.rst | ||
conf.py | ||
index.rst |
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.