diff options
| author | Paul Taylor <paul.e.taylor@me.com> | 2020-03-12 22:56:10 -0700 |
|---|---|---|
| committer | Paul Taylor <paul.e.taylor@me.com> | 2020-03-12 22:56:10 -0700 |
| commit | 8795bad8f52c6b09f9b86cb60402edcf2c413d02 (patch) | |
| tree | 7ea45e0d19b6908d0b793d8ff10452e59b3ac7b6 /src | |
| parent | db82b7b00fbfb46de813ed8a0a51fbc3669ecf0d (diff) | |
| download | doxdocgen-8795bad8f52c6b09f9b86cb60402edcf2c413d02.tar.gz | |
Enable CUDA language support
Diffstat (limited to 'src')
| -rw-r--r-- | src/CodeParserController.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CodeParserController.ts b/src/CodeParserController.ts index 8be7034..4490f69 100644 --- a/src/CodeParserController.ts +++ b/src/CodeParserController.ts @@ -114,6 +114,7 @@ export default class CodeParserController { switch (lang) { case "c": case "cpp": + case "cuda": parser = new CppParser(this.cfg); break; default: |