Skip to content

Commit

Permalink
Update MinInRadiusFilter.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
pfankhauser authored Apr 18, 2019
1 parent 200a14e commit 21a6fd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grid_map_filters/src/MinInRadiusFilter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ bool MinInRadiusFilter<T>::update(const T& mapIn, T& mapOut)
if (!mapOut.isValid(*iterator, inputLayer_))
continue;
value = mapOut.at(inputLayer_, *iterator);
double valueMin{0};
double valueMin = 0.0;

// Requested position (center) of circle in map.
Eigen::Vector2d center;
Expand Down

0 comments on commit 21a6fd0

Please sign in to comment.