1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-10 01:50:46 +02:00

removed unnecessary const classifier

This commit is contained in:
Felix Mauch
2019-04-16 09:15:05 +02:00
parent 639da94588
commit 736cd36940
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ public:
virtual void doSwitch(const std::list<hardware_interface::ControllerInfo>& start_list,
const std::list<hardware_interface::ControllerInfo>& stop_list) override;
const uint32_t getControlFrequency() const;
uint32_t getControlFrequency() const;
protected:
std::unique_ptr<UrDriver> ur_driver_;

View File

@@ -131,7 +131,7 @@ void HardwareInterface ::doSwitch(const std::list<hardware_interface::Controller
}
}
const uint32_t HardwareInterface ::getControlFrequency() const
uint32_t HardwareInterface ::getControlFrequency() const
{
if (ur_driver_ != nullptr)
{