Skip to content

Commit

Permalink
Renamed get_all_mappings to get_mappings
Browse files Browse the repository at this point in the history
No reason really for the _all_ to be there.
  • Loading branch information
patrikhuber committed Jun 29, 2018
1 parent f123e51 commit 9e0f539
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion include/eos/core/LandmarkMapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,12 @@ class LandmarkMapper
return landmark_mappings.size();
};

const auto& get_all_mappings() const {
/**
* @brief Returns the mappings held by this mapper.
*
* @return All mappings contained in the mapper.
*/
const auto& get_mappings() const {
return landmark_mappings;
};

Expand Down

0 comments on commit 9e0f539

Please sign in to comment.