diff options
| author | Christoph Schlosser <christoph@linux.com> | 2019-03-20 18:28:48 +0100 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2019-04-13 14:21:19 +0200 |
| commit | 6639bec9e001e8042efc8feeec63def1292a7759 (patch) | |
| tree | 91d08cb955f7fa4734f50c9ce3dd2898eab8d6ab /src/Lang | |
| parent | c0df4b403b3d760f9a9bd72d0da4967858bc4c53 (diff) | |
| download | doxdocgen-6639bec9e001e8042efc8feeec63def1292a7759.tar.gz | |
Enums now are treated as type correctly
Diffstat (limited to 'src/Lang')
| -rw-r--r-- | src/Lang/Cpp/CppParser.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Lang/Cpp/CppParser.ts b/src/Lang/Cpp/CppParser.ts index f080483..37c36eb 100644 --- a/src/Lang/Cpp/CppParser.ts +++ b/src/Lang/Cpp/CppParser.ts @@ -118,6 +118,7 @@ export default class CppParser implements ICodeParser { "constexpr", "const", "struct", + "enum", ]; this.stripKeywords = [ |