diff --git a/clang/www/cxx_status.html b/clang/www/cxx_status.html index 88de2f97b08a..36c1ac65857b 100644 --- a/clang/www/cxx_status.html +++ b/clang/www/cxx_status.html @@ -22,7 +22,15 @@
This page tracks the status of C++ support in Clang.
Currently most of the C++ features are missing; here you can find features that are at least partially supported in Clang.
Feature |
Example |
@@ -33,6 +41,11 @@ Currently most of the C++ features are missing; here you can find features that
reinterpret_cast | Full support. |
Named Casts | +static_cast<int>(x) | +Parser and Sema support, no codegen. | +|
References | int &x = ...; |