blob: 998f81ba6eb861e4d3c1c0b6c95929e3fe89ddd0 [file] [log] [blame]
Marshall Clow19158f22015-05-20 17:39:54 +00001This is meant to be a general place to list things that should be done "someday"
2
Eric Fiselier97092d62015-05-22 02:23:22 +00003CXX Runtime Library Tasks
4=========================
Eric Fiselier97092d62015-05-22 02:23:22 +00005* Fix that CMake always link to /usr/lib/libc++abi.dylib on OS X.
Eric Fiselier97092d62015-05-22 02:23:22 +00006* Look into mirroring libsupc++'s typeinfo vtable layout when libsupc++/libstdc++
7 is used as the runtime library.
Eric Fiselier97092d62015-05-22 02:23:22 +00008* Investigate and document interoperability between libc++ and libstdc++ on
9 linux. Do this for every supported c++ runtime library.
10
11Atomic Related Tasks
12====================
Eric Fiselier97092d62015-05-22 02:23:22 +000013* future should use <atomic> for synchronization.
Eric Fiselier97092d62015-05-22 02:23:22 +000014
15Test Suite Tasks
16================
Eric Fiselier97092d62015-05-22 02:23:22 +000017* Improve the quality and portability of the locale test data.
Eric Fiselier0dec9d52015-09-04 22:57:00 +000018* Convert failure tests to use Clang Verify.
Eric Fiselier97092d62015-05-22 02:23:22 +000019
20Misc Tasks
21==========
Marshall Clow19158f22015-05-20 17:39:54 +000022* Find all sequences of >2 underscores and eradicate them.
23* run clang-tidy on libc++
Marshall Clow19158f22015-05-20 17:39:54 +000024* Document the "conditionally-supported" bits of libc++
25* Look at basic_string's move assignment operator, re LWG 2063 and POCMA
Marshall Clow19158f22015-05-20 17:39:54 +000026* Put a static_assert in std::allocator to deny const/volatile types (LWG 2447)