Skip to content

Commit

Permalink
realtime box API change
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich authored Nov 23, 2024
1 parent a88f043 commit a30a18a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ur_controllers/src/ur_configuration_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ bool URConfigurationController::getRobotSoftwareVersion(
ur_msgs::srv::GetRobotSoftwareVersion::Response::SharedPtr resp)
{
std::shared_ptr<VersionInformation> temp;
return robot_software_version_.tryGet([resp](const std::shared_ptr<VersionInformation> ptr) {
return robot_software_version_.try_get([resp](const std::shared_ptr<VersionInformation> ptr) {
resp->major = ptr->major;
resp->minor = ptr->minor;
resp->build = ptr->build;
Expand Down

0 comments on commit a30a18a

Please sign in to comment.