aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-02-17 17:38:57 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-02-17 17:38:57 +0000
commit73e70e48560ca6a90ff6854d12fe0be46c825015 (patch)
tree6ad455e02075b30200c574c190d66c14f85fbec7 /c_parser/include
parent95293c6e1c24a04a1d3659e987ad505f1ff77387 (diff)
downloadCompiler-73e70e48560ca6a90ff6854d12fe0be46c825015.tar.gz
Compiler-73e70e48560ca6a90ff6854d12fe0be46c825015.zip
Fixed case for empty param list in function
Diffstat (limited to 'c_parser/include')
-rw-r--r--c_parser/include/ast_function.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/c_parser/include/ast_function.hpp b/c_parser/include/ast_function.hpp
index 1086f49..085957c 100644
--- a/c_parser/include/ast_function.hpp
+++ b/c_parser/include/ast_function.hpp
@@ -33,6 +33,8 @@ private:
mutable std::vector<const ast_Base*> param_list;
public:
+ ast_ParamList() {}
+
ast_ParamList(const ast_Base* param) {
param_list.push_back(param);
}