Fix mismatched tag warning for MapByIndex (#658)

- [ X] Keep your PR rebased to master.
- [ X] Keep your PR under 200 lines of code and address a single concern.
- [ X] Add unit test(s) and documentation (these do not count toward your 200 lines).
- [ X] Adhere to the [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html).
- [ X] Run `clang-format -style=Google` on your code (this alone is not enough to ensure you've followed the style guide).
- [ X] Run `ninja test` or `catkin_make_isolated --install --use-ninja --pkg cartographer --make-args test` as appropriate.
master
damienrg 2017-11-13 10:18:58 +01:00 committed by Wally B. Feed
parent a9da74496a
commit d183ab737a
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class Range {
template <typename IdType, typename DataType> template <typename IdType, typename DataType>
class MapById { class MapById {
private: private:
class MapByIndex; struct MapByIndex;
public: public:
struct IdDataReference { struct IdDataReference {