Skip to content
Snippets Groups Projects

Social layers

Open Fabian Reister requested to merge feature/store-proxemics-in-memory into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -34,7 +34,7 @@ namespace armarx::navigation::human
const Human parent = currentHumans_.at(parentIdx);
// if no group exists yet for this human, create one just for them
if (humanGroupMap.find(parentIdx) == humanGroupMap.end())
if (humanGroupMap.count(parentIdx) == 0)
{
const human::HumanGroup group = {{{}}, {parent}, now};
groups.push_back(group);
Loading