diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index 6983a0c..59f8a8d 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -963,7 +963,7 @@ bool PythonRunner::initPython(const QString &pythonPath) bool handled_exec_file(bpy::str filename, bpy::object globals = bpy::object(), bpy::object locals = bpy::object()) { - return bpy::handle_exception(boost::bind(bpy::exec_file, filename, globals, locals)); + return bpy::handle_exception(std::bind(bpy::exec_file, filename, globals, locals)); }