Skip to content

Commit

Permalink
chore: Update operator function in Point class for EarthCenteredEarth…
Browse files Browse the repository at this point in the history
…Fixed conversion
  • Loading branch information
fbriol committed Jun 29, 2024
1 parent a86f389 commit 66b9e1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/fes/geometry/point.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ class Point : public point_t {
constexpr Point(double lon, double lat) : point_t(lon, lat) {}

/// Convert the point to an ECEF point.
constexpr explicit operator geometry::EarthCenteredEarthFixed() const;
FES_MATH_CONSTEXPR explicit operator geometry::EarthCenteredEarthFixed()
const;

/// Write the geographic point to a stream.
friend auto operator<<(std::ostream& os, const Point& point) -> std::ostream&;
Expand Down

0 comments on commit 66b9e1b

Please sign in to comment.