summaryrefslogtreecommitdiffstats
path: root/src/CodeParser
diff options
context:
space:
mode:
Diffstat (limited to 'src/CodeParser')
-rw-r--r--src/CodeParser/CParser.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/CodeParser/CParser.ts b/src/CodeParser/CParser.ts
index 77b01eb..8b0bfe1 100644
--- a/src/CodeParser/CParser.ts
+++ b/src/CodeParser/CParser.ts
@@ -38,11 +38,11 @@ export default class CParser implements ICodeParser {
const tparams: string[] = this.getTemplateParams(line);
const cppGenerator: IDocGen = new Generator(
- this.activeEditor,
- this.activeSelection,
- params,
- tparams,
- returnValue
+ this.activeEditor,
+ this.activeSelection,
+ params,
+ tparams,
+ returnValue,
);
return cppGenerator;
}