summaryrefslogtreecommitdiffstats
path: root/TODO.TXT
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2015-08-20 19:22:35 +0000
committerEric Fiselier <eric@efcs.ca>2015-08-20 19:22:35 +0000
commitdc68c69e327d0bf06c196bb2d9a64b5158f6102e (patch)
treebf4d1238cba3793763542e7f895284b032342a0a /TODO.TXT
parented65d0dba54704f96ecca37343f6a07fc0c53f5e (diff)
downloadexternal_libcxx-dc68c69e327d0bf06c196bb2d9a64b5158f6102e.tar.gz
external_libcxx-dc68c69e327d0bf06c196bb2d9a64b5158f6102e.tar.bz2
external_libcxx-dc68c69e327d0bf06c196bb2d9a64b5158f6102e.zip
Remove completed items from TODO.TXT
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@245601 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'TODO.TXT')
-rw-r--r--TODO.TXT8
1 files changed, 3 insertions, 5 deletions
diff --git a/TODO.TXT b/TODO.TXT
index 513b86377..162fea207 100644
--- a/TODO.TXT
+++ b/TODO.TXT
@@ -21,11 +21,11 @@ CXX Runtime Library Tasks
Atomic Related Tasks
====================
-* Support <atomic> in C++03 (needed for internal use).
+* Enable mixing of clang and GCC atomics internally. Currently some
+ parts of libc++ use atomics only when clang provides them.
+ (see memory@5380 for an example)
* Audit use of libatomic builtins in <atomic> with GCC.
* future should use <atomic> for synchronization.
-* call_once should use <atomic> for synchronization.
-* Audit shared_ptr use of <atomic>
Test Suite Tasks
================
@@ -42,8 +42,6 @@ Misc Tasks
* Look at basic_string's move assignment operator, re LWG 2063 and POCMA
* libc++ is missing try_emplace
* Put a static_assert in std::allocator to deny const/volatile types (LWG 2447)
-* Investigate the effect of using __decltype instead of __typeof__ to provide
- decltype in C++03. What code could be broken by this change?
* Convert failure tests to use Clang Verify.
* Document support (or lack of) for C++11 libraries in C++03.
* Document supported compilers.