From eecf798dcf8097e00d773443fc981c4fedf26db4 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Thu, 13 Sep 2018 22:32:42 -0700 Subject: [PATCH] Update libabacus. --- external/libabacus | 2 +- include/abacus.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/external/libabacus b/external/libabacus index c4a7117..ca6075e 160000 --- a/external/libabacus +++ b/external/libabacus @@ -1 +1 @@ -Subproject commit c4a7117704e6548a880b50fbc499e524bfed5823 +Subproject commit ca6075e8d5114475ce128d1459118c4cd2151a74 diff --git a/include/abacus.hpp b/include/abacus.hpp index 6db55a1..ae8985a 100644 --- a/include/abacus.hpp +++ b/include/abacus.hpp @@ -36,7 +36,7 @@ class abacus { template 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; }