Skip to content
Snippets Groups Projects
Commit b791e09f authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

trivial conversion out of lambda

parent 0e9957c2
No related branches found
No related tags found
1 merge request!1578SimResult, Datafield: further clarifications
...@@ -129,11 +129,9 @@ void DataItem::saveDatafield(const QString& projectDir) const ...@@ -129,11 +129,9 @@ void DataItem::saveDatafield(const QString& projectDir) const
std::unique_lock<std::mutex> lock(m_update_data_mutex); // TODO why lock?? std::unique_lock<std::mutex> lock(m_update_data_mutex); // TODO why lock??
auto* clone = converted_field()->clone(); auto* clone = converted_field()->clone();
lock.unlock(); lock.unlock();
std::unique_ptr<Datafield> field(clone); // for memory management
auto saveLambda = [clone, path] { auto saveLambda = [&field, path] { IOFactory::writeDatafield(*field, path.toStdString()); };
std::unique_ptr<Datafield> field(clone); // for memory management
IOFactory::writeDatafield(*field, path.toStdString());
};
if (m_saveInBackground) { if (m_saveInBackground) {
std::string errorMessage; std::string errorMessage;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment