Add TODO note about switching to __decltype

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@238631 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier 2015-05-29 23:21:03 +00:00
parent 60784f62de
commit 0620fc865b

View File

@ -44,4 +44,6 @@ Misc Tasks
* Look at basic_string's move assignment operator, re LWG 2063 and POCMA * Look at basic_string's move assignment operator, re LWG 2063 and POCMA
* libc++ is missing try_emplace * libc++ is missing try_emplace
* Put a static_assert in std::allocator to deny const/volatile types (LWG 2447) * 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?