From cfd9e8146f7589f3f04fea979c741267b0454546 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sun, 7 Jul 2013 12:21:36 -0700 Subject: gras: python hooks for factory --- lib/factory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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(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) -- cgit