-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Cleanup from #107 #158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup from #107 #158
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,7 +6,7 @@ | |
| <description> | ||
| ROS2 controller (DWB) metapackage | ||
| </description> | ||
| <maintainer email="oregon.robotics.team@intel.com">Oregon Robotics Team</maintainer> | ||
| <maintainer email="carl.r.delsey@intel.com">Carl Delsey</maintainer> | ||
| <maintainer email="[email protected]">Steve Macenski</maintainer> | ||
| <license>Apache License 2.0</license> | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,8 +35,8 @@ | |
| * Author: Eitan Marder-Eppstein | ||
| * David V. Lu!! | ||
| *********************************************************************/ | ||
| #ifndef nav2_costmap_2d_nav2_costmap_2d_ROS_H_ | ||
| #define nav2_costmap_2d_nav2_costmap_2d_ROS_H_ | ||
| #ifndef NAV2_COSTMAP_2D_nav2_costmap_2d_ROS_H_ | ||
|
||
| #define NAV2_COSTMAP_2D_nav2_costmap_2d_ROS_H_ | ||
|
|
||
| #include <nav2_costmap_2d/layered_costmap.h> | ||
| #include <nav2_costmap_2d/layer.h> | ||
|
|
@@ -286,4 +286,4 @@ class Costmap2DROS | |
| // class Costmap2DROS | ||
| } // namespace nav2_costmap_2d | ||
|
|
||
| #endif // nav2_costmap_2d_nav2_costmap_2d_ROS_H | ||
| #endif // NAV2_COSTMAP_2D_NAV2_COSTMAP_2D_ROS_H | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this pass cpplint? I thought it wanted two _ between the path and the filename part eg
NAV2_COSTMAP_2D__ARRAY_PARSER_HThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This directory has a lot of issues still w/ the linters. Since the spirit of this PR was directory re-org, I suggest leaving that for a separate PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed all to have double underscores.