Skip to content
Snippets Groups Projects
Commit 2544d3e8 authored by Tilman Daab's avatar Tilman Daab
Browse files

add default constructor for Marker, which is needed for aron conversions

parent fd8b71a2
No related branches found
No related tags found
1 merge request!375Fix/default constructor for marker
Pipeline #12190 failed
...@@ -30,6 +30,11 @@ ...@@ -30,6 +30,11 @@
namespace armarx::armem::marker namespace armarx::armem::marker
{ {
Marker::Marker()
{
}
Marker::Marker(const std::string& name, Marker::Marker(const std::string& name,
const FramedPose& framedMarkerPose, const FramedPose& framedMarkerPose,
const FramedPose& framedRobotPose, const FramedPose& framedRobotPose,
......
...@@ -117,6 +117,7 @@ namespace armarx::armem::marker ...@@ -117,6 +117,7 @@ namespace armarx::armem::marker
{ {
public: public:
Marker();
Marker(const armarx::armem::arondto::Marker& dto); Marker(const armarx::armem::arondto::Marker& dto);
Marker(const std::string& name, Marker(const std::string& name,
const FramedPose& markerPose, const FramedPose& markerPose,
......
  • Author Maintainer

    @dreher, the pipeline of this merge request failed due to ERROR: Job failed: execution took longer than 1h0m0s seconds. I do not suspect this addition of a constructor to cause any problem apart from taking long to compile everything that builds upon RobotAPI.

    The logs of the pipeline are at https://git.h2t.iar.kit.edu/sw/armarx/robot-api/-/jobs/38657/raw and https://git.h2t.iar.kit.edu/sw/armarx/robot-api/-/jobs/38658/raw

    How can we proceed with this merge request (!375) / pipeline failure?

    Edited by Tilman Daab
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