Skip to content

Commit

Permalink
#2137 Remove non-existent header file
Browse files Browse the repository at this point in the history
There was a non-existent header file included that was causing the
CI pipeline to fail. Not sure why it wasn't caught before. This commit
also rearranges the include guards for units_extensions.hpp. It is
only a cosmetic change.
  • Loading branch information
adamlm committed Sep 6, 2023
1 parent fe1402e commit 25f6c19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

#include <carma_cooperative_perception_interfaces/msg/detection_list.hpp>
#include <carma_ros2_utils/carma_lifecycle_node.hpp>
#include <carma_ros2_utils/msg_conversion_node.hpp>
#include <carma_v2x_msgs/msg/sensor_data_sharing_message.hpp>
#include <rclcpp/rclcpp.hpp>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#ifndef CARMA_COOPERATIVE_PERCEPTION_UNITS_EXTENSIONS_HPP_
#define CARMA_COOPERATIVE_PERCEPTION_UNITS_EXTENSIONS_HPP_

/*
* Copyright 2023 Leidos
*
Expand All @@ -17,6 +14,9 @@
* limitations under the License.
*/

#ifndef CARMA_COOPERATIVE_PERCEPTION_UNITS_EXTENSIONS_HPP_
#define CARMA_COOPERATIVE_PERCEPTION_UNITS_EXTENSIONS_HPP_

#include <units.h>

#include <ratio>
Expand Down

0 comments on commit 25f6c19

Please sign in to comment.