Update libabacus.

This commit is contained in:
2018-09-13 22:32:42 -07:00
parent 13aa227470
commit eecf798dcf
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ class abacus {
template <typename ... Ts>
ref abacus::call(const std::string& name, Ts...params) {
ref value;
libab_run_function_scoped(&ab, name.c_str(), scope, value, sizeof...(params), (libab_ref*) params...);
libab_call_function_scoped(&ab, name.c_str(), scope, value, sizeof...(params), (libab_ref*) params...);
libab_gc_run(&ab.containers);
return value;
}