I want to unpack array values to different class variables but for that I am getting an error.
auto [SendLowROS.motorCmd[FR_0].Kp, SendLowROS.motorCmd[FR_1].Kp, SendLowROS.motorCmd[FR_2].Kp,
SendLowROS.motorCmd[FL_0].Kp, SendLowROS.motorCmd[FL_1].Kp, SendLowROS.motorCmd[FL_2].Kp,
SendLowROS.motorCmd[RR_0].Kp, SendLowROS.motorCmd[RR_1].Kp, SendLowROS.motorCmd[RR_2].Kp,
SendLowROS.motorCmd[RL_0].Kp, SendLowROS.motorCmd[RL_1].Kp, SendLowROS.motorCmd[RL_2].Kp] = msg.Kp;
/home/src/llm.cpp: In member function ‘void Driver::jointCommandCallback(msgs::JointCMD)’:
/home/src/llm.cpp:65:25: error: expected ‘]’ before ‘.’ token
auto [SendLowROS.motorCmd[FR_0].Kp, SendLowROS.motorCmd[FR_1].Kp, SendLowROS.motorCmd[FR_2].Kp,
^
/home/src/mbs_unitree_ros/src/llm.cpp:68:111: error: ‘std::_Vector_base<float, std::allocator<float> >’ is an inaccessible base of ‘std::vector<float>’
SendLowROS.motorCmd[RL_0].Kp, SendLowROS.motorCmd[RL_1].Kp, SendLowROS.motorCmd[RL_2].Kp] = msg.Kp;
You can't bind to existing variables in structured bindings.
For this, you can use
std::tie()
instead.Example:
Or for non-copyable, but moveable, types: