C++: Handle C11 _Noreturn in DefaultOptions

This commit is contained in:
Jeroen Ketema
2022-03-14 12:48:58 +01:00
parent b45f56ac08
commit 1a1c34e1be
5 changed files with 19 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ class FunctionSpecifier extends Specifier {
/**
* A C/C++ storage class specifier: `auto`, `register`, `static`, `extern`,
* or `mutable".
* or `mutable`.
*/
class StorageClassSpecifier extends Specifier {
StorageClassSpecifier() { this.hasName(["auto", "register", "static", "extern", "mutable"]) }