Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,14 @@ macro(generate_parameter_library LIB_NAME YAML_FILE)
set_target_properties(${LIB_NAME} PROPERTIES LINKER_LANGUAGE CXX)
target_link_libraries(${LIB_NAME} INTERFACE
fmt::fmt
parameter_traits::parameter_traits
rclcpp::rclcpp
rclcpp_lifecycle::rclcpp_lifecycle
rsl::rsl
tcb_span::tcb_span
tl_expected::tl_expected
)
install(DIRECTORY ${LIB_INCLUDE_DIR} DESTINATION include)
ament_export_dependencies(fmt parameter_traits rclcpp rclcpp_lifecycle rsl tcb_span tl_expected)
ament_export_dependencies(fmt rclcpp rclcpp_lifecycle rsl tcb_span tl_expected)
endmacro()


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
# POSSIBILITY OF SUCH DAMAGE.

find_package(fmt REQUIRED)
find_package(parameter_traits REQUIRED)
find_package(rclcpp REQUIRED)
find_package(rsl REQUIRED)
find_package(rclcpp_lifecycle REQUIRED)
Expand Down
1 change: 0 additions & 1 deletion generate_parameter_library/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
<buildtool_export_depend>generate_parameter_library_py</buildtool_export_depend>

<depend>fmt</depend>
<depend>parameter_traits</depend>
<depend>rclcpp</depend>
<depend>rclpy</depend>
<depend>rclcpp_lifecycle</depend>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
#include <fmt/format.h>
#include <fmt/ranges.h>

#include <parameter_traits/parameter_traits.hpp>

#include <rsl/static_string.hpp>
#include <rsl/static_vector.hpp>
#include <rsl/parameter_validators.hpp>
Expand Down Expand Up @@ -51,9 +49,6 @@ using rsl::gt_eq;
using rsl::one_of;
using rsl::to_parameter_result_msg;

// temporarily needed for backwards compatibility for custom validators
using namespace parameter_traits;

template <typename T>
[[nodiscard]] auto to_parameter_value(T value) {
return rclcpp::ParameterValue(value);
Expand Down
92 changes: 0 additions & 92 deletions parameter_traits/CHANGELOG.rst

This file was deleted.

49 changes: 0 additions & 49 deletions parameter_traits/CMakeLists.txt

This file was deleted.

69 changes: 0 additions & 69 deletions parameter_traits/include/parameter_traits/parameter_traits.hpp

This file was deleted.

29 changes: 0 additions & 29 deletions parameter_traits/package.xml

This file was deleted.

Loading