Skip to content

Commit

Permalink
Forgot to add const qualifier from code review.
Browse files Browse the repository at this point in the history
  • Loading branch information
enricgalceran committed Sep 8, 2015
1 parent c4fdf91 commit b922e4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msf_core/src/lib/gps_conversion.cc
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ msf_core::Vector3 GPSConversion::ECEFToENU(const msf_core::Vector3& ecef) const
msf_core::Vector3 GPSConversion::WGS84ToENU(const double latitude,
const double longitude,
const double altitude) const {
msf_core::Vector3 ecef = this->WGS84ToECEF(latitude, longitude, altitude);
const msf_core::Vector3 ecef = this->WGS84ToECEF(latitude, longitude, altitude);
return this->ECEFToENU(ecef);
}

Expand Down

0 comments on commit b922e4d

Please sign in to comment.