Skip to content

Commit d793013

Browse files
committed
apply fix for pre-commit
Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp>
1 parent 886c0b8 commit d793013

4 files changed

Lines changed: 6 additions & 2 deletions

File tree

map/autoware_map_loader/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,11 @@ The node determines bounding boxes for each cell in one of two ways:
181181
### Published Topics
182182

183183
- `/map/vector_map` (autoware_map_msgs/LaneletMapBin) : Merged binary Lanelet2 map
184-
- `output/lanelet2_map_metadata` (autoware_map_msgs/LaneletMapMetaData) : Per-cell bounding-box metadata _(only when `enable_selected_map_loading` is `true`)_
184+
- `output/lanelet2_map_metadata` (autoware_map_msgs/LaneletMapMetaData) : Per-cell bounding-box metadata (only available when `enable_selected_map_loading` is `true`)
185185

186186
### Services
187187

188-
- `service/get_selected_lanelet2_map` (autoware_map_msgs/srv/GetSelectedLanelet2Map) : Returns the binary map for a requested set of cell IDs _(only when `enable_selected_map_loading` is `true`)_
188+
- `service/get_selected_lanelet2_map` (autoware_map_msgs/srv/GetSelectedLanelet2Map) : Returns the binary map for a requested set of cell IDs (only available when `enable_selected_map_loading` is `true`)
189189

190190
### Parameters
191191

map/autoware_map_loader/src/lanelet2_map_loader/lanelet2_map_loader_node.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
#include <optional>
5858
#include <stdexcept>
5959
#include <string>
60+
#include <utility>
6061
#include <vector>
6162

6263
namespace autoware::map_loader

map/autoware_map_loader/src/lanelet2_map_loader/lanelet2_selected_map_loader_module.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include <autoware_lanelet2_extension/utility/utilities.hpp>
2121

2222
#include <filesystem>
23+
#include <map>
2324
#include <memory>
2425
#include <string>
2526
#include <utility>

map/autoware_map_loader/test/test_lanelet2_selected_map_loader_module.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@
2323

2424
#include <gtest/gtest.h>
2525

26+
#include <algorithm>
2627
#include <map>
2728
#include <memory>
2829
#include <string>
30+
#include <utility>
2931

3032
using autoware::map_loader::Lanelet2FileMetaData;
3133
using autoware::map_loader::Lanelet2SelectedMapLoaderModule;

0 commit comments

Comments
 (0)