Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Dec 17, 2023
1 parent d3d44f9 commit 200f141
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
15 changes: 7 additions & 8 deletions apps/robot-map-gui/CDocument.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,20 +72,19 @@ class CDocument
void insert(
const std::vector<size_t>& idx,
mrpt::maps::CSimpleMap::KeyframeList& posesObsPairs);

mrpt::maps::CSimpleMap::KeyframeList get(
const std::vector<size_t>& idx);

const mrpt::maps::CSimpleMap::Keyframe & get(size_t idx) const
mrpt::maps::CSimpleMap::KeyframeList get(const std::vector<size_t>& idx);

const mrpt::maps::CSimpleMap::Keyframe& get(size_t idx) const
{
return m_simplemap.get(idx);
return m_simplemap.get(idx);
}

mrpt::maps::CSimpleMap::Keyframe& get(size_t idx)
{
return m_simplemap.get(idx);
return m_simplemap.get(idx);
}

mrpt::maps::CSimpleMap::KeyframeList getReverse(
const std::vector<size_t>& idx);

Expand Down
3 changes: 2 additions & 1 deletion apps/robot-map-gui/gui/observationTree/CPairNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ class CPairNode : public CNode
{
public:
CPairNode(
CNode* parent, const mrpt::maps::CSimpleMap::Keyframe& poseSensFramePair,
CNode* parent,
const mrpt::maps::CSimpleMap::Keyframe& poseSensFramePair,
size_t indexInSimpleMap);
~CPairNode() override;

Expand Down

0 comments on commit 200f141

Please sign in to comment.