Skip to content

Commit

Permalink
chore(autoware_gnss_poser): make source codes follow the coding rules (
Browse files Browse the repository at this point in the history
…autowarefoundation#8703)

* Follow the coding rules in autoware_gnss_poser

Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>

* Edit _core to _node inside files

Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>

* Fixed AUTOWARE__GNSS_POSER__GNSS_POSER_NODE_HPP_ part

Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>

---------

Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
  • Loading branch information
TaikiYamada4 authored Sep 2, 2024
1 parent 38c6e0e commit 482d0ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions sensing/autoware_gnss_poser/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ find_library(GeographicLib_LIBRARIES
)

set(GNSS_POSER_HEADERS
include/autoware/gnss_poser/gnss_poser_core.hpp
include/autoware/gnss_poser/gnss_poser_node.hpp
)

ament_auto_add_library(gnss_poser_node SHARED
src/gnss_poser_core.cpp
src/gnss_poser_node.cpp
${GNSS_POSER_HEADERS}
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef AUTOWARE__GNSS_POSER__GNSS_POSER_CORE_HPP_
#define AUTOWARE__GNSS_POSER__GNSS_POSER_CORE_HPP_
#ifndef AUTOWARE__GNSS_POSER__GNSS_POSER_NODE_HPP_
#define AUTOWARE__GNSS_POSER__GNSS_POSER_NODE_HPP_

#include <component_interface_specs/map.hpp>
#include <component_interface_utils/rclcpp.hpp>
Expand Down Expand Up @@ -103,4 +103,4 @@ class GNSSPoser : public rclcpp::Node
};
} // namespace autoware::gnss_poser

#endif // AUTOWARE__GNSS_POSER__GNSS_POSER_CORE_HPP_
#endif // AUTOWARE__GNSS_POSER__GNSS_POSER_NODE_HPP_
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "autoware/gnss_poser/gnss_poser_core.hpp"
#include "autoware/gnss_poser/gnss_poser_node.hpp"

#include <autoware/geography_utils/height.hpp>
#include <autoware/geography_utils/projection.hpp>
Expand Down

0 comments on commit 482d0ff

Please sign in to comment.