Skip to content

Commit

Permalink
Remove extra semi colon from luna/common/sampling/samplers/StatsWrapp…
Browse files Browse the repository at this point in the history
…er.cpp

Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: palmje

Differential Revision: D51995049

fbshipit-source-id: 441e8695a7d4c68d715c87a7704fa54bda53f6ab
  • Loading branch information
r-barnes authored and facebook-github-bot committed Dec 9, 2023
1 parent d787a18 commit 7f170d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opensfm/src/foundation/newton_raphson.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ typename TypeTraits<N, M>::Values SolveDecr(
const typename TypeTraits<N, M>::Jacobian& d,
const typename TypeTraits<N, M>::Values& f) {
return (d.transpose() * d).inverse() * d.transpose() * f;
};
}

template <>
typename TypeTraits<1, 1>::Values SolveDecr<1, 1>(
Expand Down

0 comments on commit 7f170d0

Please sign in to comment.