diff options
Diffstat (limited to 'lib/callable.cpp')
-rw-r--r-- | lib/callable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/callable.cpp b/lib/callable.cpp index a6417bb..6014974 100644 --- a/lib/callable.cpp +++ b/lib/callable.cpp @@ -26,7 +26,7 @@ void Callable::_register_call(const std::string &key, void *entry) (*cr)[key].reset(reinterpret_cast<CallableRegistryEntry *>(entry)); } -PMCC Callable::_handle_call(const std::string &key, const std::vector<PMCC> &args) +PMCC Callable::_handle_call(const std::string &key, const PMCC *args) { CallableRegistry *cr = reinterpret_cast<CallableRegistry *>(_call_registry); boost::shared_ptr<CallableRegistryEntry> entry = (*cr)[key]; |