Skip to content

Commit

Permalink
Merge pull request #1726 from LORgames/ssurtees/dialectDocs
Browse files Browse the repository at this point in the history
Updated cdialect and cppdialect docs
  • Loading branch information
starkos authored Oct 4, 2021
2 parents 1c13046 + 74de779 commit 6ab74d5
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 18 deletions.
19 changes: 10 additions & 9 deletions website/docs/cdialect.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ###

Expand Down
30 changes: 21 additions & 9 deletions website/docs/cppdialect.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ###

Expand Down

0 comments on commit 6ab74d5

Please sign in to comment.