aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/ast_function.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'c_parser/include/ast_function.hpp')
-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);
}