summaryrefslogtreecommitdiffstats
path: root/src/CodeParserController.ts
diff options
context:
space:
mode:
authorChristoph Schlosser <christophschlosser@users.noreply.github.com>2020-03-15 09:48:00 +0100
committerGitHub <noreply@github.com>2020-03-15 09:48:00 +0100
commitb2529bc1ff6d8b38e7a488469f84335e62667f77 (patch)
tree7ea45e0d19b6908d0b793d8ff10452e59b3ac7b6 /src/CodeParserController.ts
parentdb82b7b00fbfb46de813ed8a0a51fbc3669ecf0d (diff)
parent8795bad8f52c6b09f9b86cb60402edcf2c413d02 (diff)
downloaddoxdocgen-b2529bc1ff6d8b38e7a488469f84335e62667f77.tar.gz
Merge pull request #148 from trxcllnt/add-cuda-language
Enable CUDA language support
Diffstat (limited to 'src/CodeParserController.ts')
-rw-r--r--src/CodeParserController.ts1
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: