Skip to content
Snippets Groups Projects
Commit 8875a72f authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

[wip/hpp-gui] patch-aa for C++11 compatibility

parent 87b54342
No related branches found
No related tags found
No related merge requests found
SHA1 (hpp-gui-4.3.0.tar.gz) = 33e413263a4932eb4819985b74a57c1b213940a0
RMD160 (hpp-gui-4.3.0.tar.gz) = b39ee5d912e897517a845d6edeb0169e3054b681
Size (hpp-gui-4.3.0.tar.gz) = 974804 bytes
SHA1 (patch-aa) = 00c88c744b4d202483e75fdbfbd5bb0b64ce8b96
c++11 compatibility
--- plugins/hppwidgetsplugin/transformconstraintwidget.cc.orig 2018-12-07 13:43:58.000000000 +0100
+++ plugins/hppwidgetsplugin/transformconstraintwidget.cc 2019-02-26 15:17:00.588357920 +0100
@@ -96,7 +96,7 @@
vecDouble[i + 1] = ui->secondYPosition->value();
vecDouble[i + 2] = ui->secondZPosition->value();
}
- emit finished(std::make_pair<QVector<double>, QVector<bool> >(vecDouble, vecBool));
+ emit finished(std::make_pair(vecDouble, vecBool));
this->deleteLater();
this->close();
}
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