Skip to content
Open
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 @@ -55,7 +55,7 @@ static const std::string ROBOT_DESCRIPTION = "robot_description";
static const std::string CONSTRAINT_PARAMETER = "constraints";

static bool getUintParameterOr(const rclcpp::Node::SharedPtr& node, const std::string& param_name,
size_t&& result_value, const size_t default_value)
unsigned int& result_value, const unsigned int default_value)
{
int param_value;
if (node->get_parameter(param_name, param_value))
Expand All @@ -76,6 +76,7 @@ static bool getUintParameterOr(const rclcpp::Node::SharedPtr& node, const std::s
return true;
}


struct GenerateStateDatabaseParameters
{
bool setFromNode(const rclcpp::Node::SharedPtr& node)
Expand Down
Loading