aboutsummaryrefslogtreecommitdiff
path: root/include/elna/boot/symbol.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/elna/boot/symbol.h')
-rw-r--r--include/elna/boot/symbol.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/elna/boot/symbol.h b/include/elna/boot/symbol.h
index e9c9a0c..1ca5deb 100644
--- a/include/elna/boot/symbol.h
+++ b/include/elna/boot/symbol.h
@@ -201,6 +201,9 @@ namespace elna::boot
std::vector<type> parameters;
const return_t return_type;
+ /// Whether further arguments may follow the parameters, as with a C
+ /// variadic function.
+ bool variadic{ false };
explicit procedure_type(return_t return_type = return_t());
};