Change typedef into using.

release/4.3a0
alexma3312 2020-08-12 13:14:18 -04:00
parent 7cfcbff4db
commit aa2d0f3dec
1 changed files with 2 additions and 1 deletions

View File

@ -357,7 +357,8 @@ inline Matrix wedge<Pose3>(const Vector& xi) {
}
// Convenience typedef
typedef std::pair<Pose3, Pose3> Pose3Pair;
// typedef std::pair<Pose3, Pose3> Pose3Pair;
using Pose3Pair = std::pair<Pose3, Pose3>;
// For MATLAB wrapper
typedef std::vector<Pose3> Pose3Vector;