Update libabacus.

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

2
external/libabacus vendored

@ -1 +1 @@
Subproject commit c4a7117704e6548a880b50fbc499e524bfed5823
Subproject commit ca6075e8d5114475ce128d1459118c4cd2151a74

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;
}