diff options
| author | Rowan Goemans <RB.Goemans@student.han.nl> | 2017-12-28 21:00:30 +0100 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2018-02-20 22:02:22 +0100 |
| commit | 5b0912d99732536ae18d3c70730cc6df2ed3af24 (patch) | |
| tree | 865a574c2639aa76bb088edbd4e4dd11926f8b4b /src/CodeParser/CParser/Token.ts | |
| parent | 0192f188aa8df79bbc7a2cec7a7e3f4bd0d70417 (diff) | |
| download | doxdocgen-5b0912d99732536ae18d3c70730cc6df2ed3af24.tar.gz | |
-- Implemented support for all operators except the conversion operator.
-- Implemented support for noexcept and throw.
-- Implemented support for constexpr.
-- Implemented support for multiple template specifications.
-- Rewritten some unit tests.
-- Fixed bug where unnamed parameters weren't recognized properly
-- Fixed bug where namespace with template params weren't being parsed correctly.
Diffstat (limited to 'src/CodeParser/CParser/Token.ts')
| -rw-r--r-- | src/CodeParser/CParser/Token.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CodeParser/CParser/Token.ts b/src/CodeParser/CParser/Token.ts index b947ec0..c9d3065 100644 --- a/src/CodeParser/CParser/Token.ts +++ b/src/CodeParser/CParser/Token.ts @@ -13,6 +13,7 @@ export enum TokenType { CommentLine, Ellipsis, Attribute, + Noexcept, } export class Token { |