llvm-capstone/clang/www
Guillot Tony 5d78b78c85 [C2X] N3007 Type inference for object definitions
This patches implements the auto keyword from the N3007 standard
specification.
This allows deducing the type of the variable like in C++:
```
auto nb = 1;
auto chr = 'A';
auto str = "String";
```
The list of statements which allows the usage of auto:

    * Basic variables declarations (int, float, double, char, char*...)
    * Macros declaring a variable with the auto type

The list of statements which will not work with the auto keyword:

    * auto arrays
    * sizeof(), alignas()
    * auto parameters, auto return type
    * auto as a struct/typedef member
    * uninitialized auto variables
    * auto in an union
    * auto as a enum type specifier
    * auto casts
    * auto in an compound literals

Differential Revision: https://reviews.llvm.org/D133289
2023-10-05 08:11:02 -04:00
..
analyzer [docs] Update the static analyzer bug reporting page 2023-08-20 10:49:29 -04:00
builtins.py [NFC][Py Reformat] Reformat python files in clang and clang-tools-extra 2023-05-23 08:29:52 +02:00
c_dr_status.html Rename C2x -> C23 in WWW pages 2023-08-11 08:56:01 -04:00
c_status.html [C2X] N3007 Type inference for object definitions 2023-10-05 08:11:02 -04:00
compatibility.html
content.css
cxx_dr_status.html [clang] Bump latest release to 17 for C++ DR Status page (#67996) 2023-10-02 22:05:36 +04:00
cxx_status.html [C++] Implement "Deducing this" (P0847R7) 2023-10-02 14:33:02 +02:00
diagnostics.html
favicon.ico
features.html
get_involved.html Publicly document the C & C++ Language WG meetings 2023-05-24 13:39:18 -04:00
get_started.html Correct minimum Visual Studio version requirements 2023-09-06 15:18:55 -04:00
hacking.html [clang][www] Change 'clang-test' to 'check-clang' on the hacking webpage 2023-09-21 08:42:57 +00:00
index.html Clean up Clang's index page slightly 2023-05-18 12:37:53 -04:00
make_cxx_dr_status [clang] Bump latest release to 17 for C++ DR Status page (#67996) 2023-10-02 22:05:36 +04:00
menu.css
menu.html.incl Removed outdated information from Clang's webpage menu 2023-05-18 12:23:29 -04:00
OpenProjects.html Rename C2x -> C23 in WWW pages 2023-08-11 08:56:01 -04:00
related.html [NFC] Inclusive language: Remove instances of master in URLs 2021-11-05 08:48:41 -05:00
robots.txt