Skip to content

Commit

Permalink
fix potential recursive on all control paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Dec 7, 2020
1 parent 523e161 commit cadb14e
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions libs/graphslam/include/mrpt/graphslam/misc/TNodeProps.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,6 @@ struct TNodeProps
mrpt::obs::CObservation2DRangeScan::Ptr scan;

TNodeProps() = default;
TNodeProps(const TNodeProps& o) { *this = o; }

TNodeProps operator=(const TNodeProps& other)
{
this->pose = other.pose;
this->scan = other.scan;
return *this;
}

void getAsString(std::string* str) const
{
Expand Down

0 comments on commit cadb14e

Please sign in to comment.