Merge pull request #1726 from LORgames/ssurtees/dialectDocs

Updated cdialect and cppdialect docs
This commit is contained in:
starkos 2021-10-04 12:43:08 -04:00 committed by GitHub
commit 6ab74d59fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 18 deletions

View File

@ -7,15 +7,16 @@ cdialect "value"
### Parameters ###
`value` one of:
* `Default` - needs documentation.
* `C89` - needs documentation.
* `C90` - needs documentation.
* `C99` - needs documentation.
* `C11` - needs documentation.
* `gnu89` - needs documentation.
* `gnu90` - needs documentation.
* `gnu99` - needs documentation.
* `gnu11` - needs documentation.
* `Default`: the default C dialect for the toolset
* `C89`: ISO C89
* `C90`: ISO C90
* `C99`: ISO C99
* `C11`: ISO C11
* `gnu89`: GNU dialect of ISO C89
* `gnu90`: GNU dialect of ISO C90
* `gnu99`: GNU dialect of ISO C99
* `gnu11`: GNU dialect of ISO C11
### Applies To ###

View File

@ -7,15 +7,27 @@ cppdialect "value"
### Parameters ###
`value` one of:
* `Default` - needs documentation.
* `C++98` - needs documentation.
* `C++11` - needs documentation.
* `C++14` - needs documentation.
* `C++17` - needs documentation.
* `gnu++98` - needs documentation.
* `gnu++11` - needs documentation.
* `gnu++14` - needs documentation.
* `gnu++17` - needs documentation.
* `Default`: the default C++ dialect for the toolset
* `C++latest`: the latest C++ dialect for the toolset or action where available, otherwise the latest C++ dialect supported by Premake
* `C++98`: ISO C++98
* `C++0x`: ISO C++11 Draft
* `C++11`: ISO C++11
* `C++1y`: ISO C++14 Draft
* `C++14`: ISO C++14
* `C++1z`: ISO C++17 Draft
* `C++17`: ISO C++17
* `C++2a`: ISO C++20 Draft
* `C++20`: ISO C++20
* `gnu++98`: GNU dialect of ISO C++98
* `gnu++0x`: GNU dialect of ISO C++11 Draft
* `gnu++11`: GNU dialect of ISO C++11
* `gnu++1y`: GNU dialect of ISO C++14 Draft
* `gnu++14`: GNU dialect of ISO C++14
* `gnu++1z`: GNU dialect of ISO C++17 Draft
* `gnu++17`: GNU dialect of ISO C++17
* `gnu++2a`: GNU dialect of ISO C++20 Draft
* `gnu++20`: GNU dialect of ISO C++20
### Applies To ###