mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 13:50:11 +00:00
400b33e18d
LWG 2447 is marked as `Complete`, but there is no `static_assert` to reject volatile types in `std::allocator`. See the discussion at https://reviews.llvm.org/D108856. Add `static_assert` in `std::allocator` to disallow volatile types. Since this is an implementation choice, mark the binding test as `libc++` only. Remove tests that use containers backed by `std::allocator` that test the container when used with a volatile type. Reviewed By: ldionne, #libc Differential Revision: https://reviews.llvm.org/D109056
24 lines
785 B
Plaintext
24 lines
785 B
Plaintext
This is meant to be a general place to list things that should be done "someday"
|
|
|
|
CXX Runtime Library Tasks
|
|
=========================
|
|
* Look into mirroring libsupc++'s typeinfo vtable layout when libsupc++/libstdc++
|
|
is used as the runtime library.
|
|
* Investigate and document interoperability between libc++ and libstdc++ on
|
|
linux. Do this for every supported c++ runtime library.
|
|
|
|
Atomic Related Tasks
|
|
====================
|
|
* future should use <atomic> for synchronization.
|
|
|
|
Test Suite Tasks
|
|
================
|
|
* Improve the quality and portability of the locale test data.
|
|
* Convert failure tests to use Clang Verify.
|
|
|
|
Misc Tasks
|
|
==========
|
|
* Find all sequences of >2 underscores and eradicate them.
|
|
* run clang-tidy on libc++
|
|
* Document the "conditionally-supported" bits of libc++
|