Skip to content
Snippets Groups Projects
Commit 10a5633f authored by Christoph Pohl's avatar Christoph Pohl
Browse files

Fixed linking issue of static members in RobotSensorMemory.h

parent 631fd71d
No related branches found
No related tags found
No related merge requests found
......@@ -137,7 +137,7 @@ namespace armarx
};
// params
static const int ROBOT_UNIT_MAXIMUM_FREQUENCY = 100;
static constexpr int ROBOT_UNIT_MAXIMUM_FREQUENCY = 100;
int robotUnitPollFrequency = 50;
std::string robotUnitSensorPrefix = "sens.*";
unsigned int robotUnitMemoryBatchSize = 50;
......@@ -158,7 +158,7 @@ namespace armarx
};
// params
static const int ROBOT_STATE_COMPONENT_MAXIMUM_FREQUENCY = 100;
static constexpr int ROBOT_STATE_COMPONENT_MAXIMUM_FREQUENCY = 100;
int robotStateComponentPollFrequency = 50;
unsigned int robotStateComponentMemoryBatchSize = 50;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment