summaryrefslogtreecommitdiffstats
path: root/www/OpenProjects.html
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-06-11 14:55:39 +0000
committerDouglas Gregor <dgregor@apple.com>2009-06-11 14:55:39 +0000
commit4bd654528bc6f872084bc86c3abf44842aefff05 (patch)
tree5dddb3d6c98cd2923daf770cef2da5a998cf62c5 /www/OpenProjects.html
parent6ba70bf2f34d70c1b4954e9889162fad7b17b4c0 (diff)
Add pseudo-destructors to the Open Projects list
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www/OpenProjects.html')
-rw-r--r--www/OpenProjects.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/www/OpenProjects.html b/www/OpenProjects.html
index 9230106868..4cd8f3c4ce 100644
--- a/www/OpenProjects.html
+++ b/www/OpenProjects.html
@@ -84,6 +84,7 @@ job, but there are lots of little pieces that can be picked off and implemented.
<li>Qualified member references: C++ supports qualified member references such as <code>x-&gt;Base::foo</code>, but Clang has no parsing or semantic analysis for them.</li>
<li>Implicit definitions of special member functions: Clang implicitly declares the various special member functions (default constructor, copy constructor, copy assignment operator, destructor) when necessary, but is not yet able to provide definitions for these functions.</li>
<li>Parsing and AST representations of friend classes and functions</li>
+ <li>Explicit calls to destructors and pseudo-destructor expressions (<code>x.~X()</code>).</li>
<li>AST representation for implicit C++ conversions: implicit conversions that involve non-trivial operations (e.g., invoking a user-defined conversion function, performing a base-to-derived or derived-to-base conversion) need explicit representation in Clang's AST.</li>
<li>Improved diagnostics for overload resolution failures: after an overload resolution failure, we currently print out the overload resolution candidates. We should also print out the reason that each candidate failed, e.g., "too few arguments", "too many arguments", "cannot initialize parameter with an lvalue of type 'foo'", etc.</li>
</ul>