summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2015-05-29 23:21:03 +0000
committerEric Fiselier <eric@efcs.ca>2015-05-29 23:21:03 +0000
commit0620fc865b076da2abf24884e34393b337e7ee47 (patch)
treec222d23c7a37b302c4e0d042b310ff7a93ab1b6b
parent60784f62deefe20952cabe220eb3f14b20c5e659 (diff)
Add TODO note about switching to __decltype
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@238631 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--TODO.TXT2
1 files changed, 2 insertions, 0 deletions
diff --git a/TODO.TXT b/TODO.TXT
index c67138169..fa27f041d 100644
--- a/TODO.TXT
+++ b/TODO.TXT
@@ -44,4 +44,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?