Unverified Commit 9be92aae authored by Robert Kimball's avatar Robert Kimball Committed by GitHub

remove dlclose in backend destructor as it is causing touble with python bindings (#1133)

parent 9d66d9a7
......@@ -40,10 +40,6 @@ unordered_map<string, shared_ptr<runtime::Backend>>& runtime::Backend::get_backe
runtime::Backend::~Backend()
{
for (auto& p : s_open_backends)
{
dlclose(p.second);
}
}
void* runtime::Backend::open_shared_library(string type)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment