Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ControllerInterface] Avoid warning about conversion from
int64_t
t…
…o `unsigned int` (#1173) Without this there is a warning. For what I found the best way is to do static cast. ``` ros2_control/controller_interface/src/controller_interface_base.cpp:88:67: warning: conversion from ‘int64_t’{aka ‘long int’} to ‘unsigned int’ may change value [-Wconversion] 88 | update_rate_ = get_node()->get_parameter("update_rate").as_int(); ``` (cherry picked from commit 2569b76)
- Loading branch information