Skip to content

Commit

Permalink
Remove extra semi colon from mapillary/opensfm/opensfm/src/geo/geo.h
Browse files Browse the repository at this point in the history
Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: palmje

Differential Revision: D51995097

fbshipit-source-id: 473fa063cd47983e6e99a85c112fb51af0ea6719
  • Loading branch information
r-barnes authored and facebook-github-bot committed Dec 8, 2023
1 parent 6a1f95e commit d787a18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion opensfm/src/geo/geo.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ struct TopocentricConverter {
Vec3d ToLla(const Vec3d& xyz) const;
Vec3d GetLlaRef() const;
};
}; // namespace geo
} // namespace geo
2 changes: 1 addition & 1 deletion opensfm/src/geo/src/geo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ TopocentricConverter::TopocentricConverter(const double lat,
: lat_(lat), long_(longitude), alt_(alt) {}

TopocentricConverter::TopocentricConverter(const Vec3d& lla)
: TopocentricConverter(lla[0], lla[1], lla[2]){};
: TopocentricConverter(lla[0], lla[1], lla[2]){}

Vec3d TopocentricConverter::ToTopocentric(const double lat, const double lon,
const double alt) const {
Expand Down

0 comments on commit d787a18

Please sign in to comment.