Skip to content

Commit

Permalink
Deleted closing parenthesis that was too much
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaskuResearch committed Oct 10, 2018
1 parent 630a2b3 commit 5b50d10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/AutoMoDeBehaviourExploration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ namespace argos {

bool AutoMoDeBehaviourExploration::IsObstacleInFront(CCI_EPuckProximitySensor::SReading s_prox_reading) {
CRadians cAngle = s_prox_reading.Angle;
if (s_prox_reading.Value >= m_fProximityThreshold && ((cAngle <= CRadians::PI_OVER_TWO) && (cAngle >= -CRadians::PI_OVER_TWO)))) {
if (s_prox_reading.Value >= m_fProximityThreshold && ((cAngle <= CRadians::PI_OVER_TWO) && (cAngle >= -CRadians::PI_OVER_TWO))) {
return true;
}
return false;
Expand Down

0 comments on commit 5b50d10

Please sign in to comment.