Skip to content
Snippets Groups Projects
Commit 00272e81 authored by Tobias Gröger's avatar Tobias Gröger
Browse files

Fix const

parent 1dbc8494
No related branches found
No related tags found
Loading
......@@ -3,7 +3,7 @@
namespace armarx::navigation::human
{
core::Pose2D
Human::estimateAt(DateTime& time) const
Human::estimateAt(const DateTime& time) const
{
double dt = (time - detectionTime).toSecondsDouble();
core::Pose2D estimation{pose};
......
......@@ -34,7 +34,7 @@ namespace armarx::navigation::human
Eigen::Vector2f linearVelocity;
DateTime detectionTime;
core::Pose2D estimateAt(DateTime& time) const;
core::Pose2D estimateAt(const DateTime& time) const;
};
struct HumanGroup
......
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