summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJosh Blum2013-07-05 16:10:49 -0700
committerJosh Blum2013-07-05 16:10:49 -0700
commitaa2c285ac86e5671fa418d336920c1c300cf9737 (patch)
tree33dfab03ddb43b4865ce59b89f421741460d6c24 /lib
parente23e5f43a97c72f1bf0dd240376bf89ff19f356c (diff)
downloadsandhi-aa2c285ac86e5671fa418d336920c1c300cf9737.tar.gz
sandhi-aa2c285ac86e5671fa418d336920c1c300cf9737.tar.bz2
sandhi-aa2c285ac86e5671fa418d336920c1c300cf9737.zip
gras: serious template insanity
Diffstat (limited to 'lib')
-rw-r--r--lib/callable.cpp2
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];