From 5ae892f8267c76473330e5da3d2eafdb4f6447ef Mon Sep 17 00:00:00 2001 From: Rowan Goemans Date: Mon, 30 Oct 2017 01:46:33 +0100 Subject: -- Completely rewritten parser to support all known(to me) C++ constructs, this includes: - Function pointers as parameters and as returns. - Template support. - Trailing return type. - Variadic templates. - Variadic parametes, C style and template style. - Correct parsing of template types with more then 1 template parameter. --- src/CodeParser/CodeParserController.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/CodeParser/CodeParserController.ts') diff --git a/src/CodeParser/CodeParserController.ts b/src/CodeParser/CodeParserController.ts index 70941d0..bd5a60b 100644 --- a/src/CodeParser/CodeParserController.ts +++ b/src/CodeParser/CodeParserController.ts @@ -10,8 +10,8 @@ import { } from "vscode"; import { Config, ConfigType } from "../Config"; import CodeParser from "./CodeParser"; -import CParser from "./CParser"; -import CppParser from "./CppParser"; +import CParser from "./CParser/CParser"; +import CppParser from "./CParser/CppParser"; /** * -- cgit v1.2.3