summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJosh Blum2013-07-07 12:21:36 -0700
committerJosh Blum2013-07-07 12:21:36 -0700
commitcfd9e8146f7589f3f04fea979c741267b0454546 (patch)
treedb46f578e2ff93b104ed9270623926732ee5eb83 /lib
parentc6373f53f4690d667e553ed7258e13c3b45aa323 (diff)
downloadsandhi-cfd9e8146f7589f3f04fea979c741267b0454546.tar.gz
sandhi-cfd9e8146f7589f3f04fea979c741267b0454546.tar.bz2
sandhi-cfd9e8146f7589f3f04fea979c741267b0454546.zip
gras: python hooks for factory
Diffstat (limited to 'lib')
-rw-r--r--lib/factory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/factory.cpp b/lib/factory.cpp
index 1c634fd..5c405f3 100644
--- a/lib/factory.cpp
+++ b/lib/factory.cpp
@@ -38,7 +38,7 @@ void Factory::_register_make(const std::string &name, void *entry)
get_factory_registry()[name].reset(reinterpret_cast<FactoryRegistryEntry *>(entry));
}
-Element *Factory::_make(const std::string &name, const PMCC &args)
+Element *Factory::_handle_make(const std::string &name, const PMCC &args)
{
boost::mutex::scoped_lock l(mutex);
if (get_factory_registry().count(name) == 0)